-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.39 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "path-intersection",
"version": "4.1.0",
"description": "Computes the intersection between two SVG paths",
"type": "module",
"main": "./intersect.js",
"types": "./intersect.d.ts",
"exports": {
".": "./intersect.js",
"./package.json": "./package.json"
},
"scripts": {
"all": "run-s lint check-types test",
"lint": "eslint .",
"dev": "npm test -- --auto-watch --no-single-run",
"test": "karma start karma.conf.cjs",
"check-types": "tsc --noEmit"
},
"engines": {
"node": ">= 14.20"
},
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/path-intersection"
},
"keywords": [
"svg",
"path",
"path intersection"
],
"author": {
"name": "Nico Rehwaldt",
"url": "https://github.com/nikku"
},
"license": "MIT",
"devDependencies": {
"@types/chai": "^5.2.2",
"@types/karma-chai": "^0.1.8",
"@types/mocha": "^10.0.10",
"chai": "^6.2.0",
"domify": "^2.0.0",
"eslint": "^9.37.0",
"eslint-plugin-bpmn-io": "^2.2.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.3",
"karma-mocha": "^2.0.1",
"karma-webpack": "^5.0.1",
"mocha": "^11.7.4",
"npm-run-all": "^4.1.5",
"puppeteer": "^24.25.0",
"typescript": "^5.9.3",
"webpack": "^5.102.1"
},
"files": [
"intersect.js",
"intersect.d.ts",
"NOTICE"
]
}