-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
40 lines (40 loc) · 836 Bytes
/
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
{
"name": "@luncheon/simplify-svg-path",
"version": "0.2.0",
"description": "Extracts Path#simplify() from Paper.js.",
"license": "MIT",
"repository": "luncheon/simplify-svg-path",
"files": [
"index.js",
"index.d.ts",
"index.iife.js"
],
"type": "module",
"main": "index.js",
"jsdelivr": "index.iife.js",
"unpkg": "index.iife.js",
"keywords": [
"paper",
"paper.js",
"svg",
"path"
],
"prettier": {
"printWidth": 140,
"endOfLine": "lf",
"singleQuote": true,
"trailingComma": "all",
"semi": false,
"arrowParens": "avoid"
},
"scripts": {
"build": "tsc -p . && node build-iife.js && npm t",
"test": "node test.js"
},
"devDependencies": {
"jsdom": "^20.0.3",
"paper": "^0.12.17",
"prettier": "^2.8.0",
"typescript": "^4.9.3"
}
}