-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
66 lines (66 loc) · 1.53 KB
/
package.json
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
61
62
63
64
65
66
{
"name": "path-intersection",
"version": "3.1.0",
"description": "Computes the intersection between two SVG paths",
"main": "intersect.js",
"types": "intersect.d.ts",
"type": "module",
"exports": {
".": {
"import": "./intersect.js",
"types": "./intersect.d.ts"
},
"./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": "^4.3.12",
"@types/karma-chai": "^0.1.6",
"@types/mocha": "^10.0.6",
"chai": "^4.4.1",
"domify": "^2.0.0",
"eslint": "^8.55.0",
"eslint-plugin-bpmn-io": "^1.0.0",
"karma": "^6.4.3",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.3",
"karma-mocha": "^2.0.1",
"karma-sinon-chai": "^2.0.2",
"karma-webpack": "^5.0.1",
"mocha": "^10.3.0",
"npm-run-all": "^4.1.2",
"puppeteer": "^22.4.1",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"typescript": "^5.4.2",
"webpack": "^5.90.3"
},
"files": [
"intersect.js",
"intersect.d.ts",
"NOTICE"
]
}