forked from thednp/svg-path-commander
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.97 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
{
"name": "svg-path-commander",
"version": "0.1.25",
"description": "ES6+ JavaScript tools for SVG processing and converting path data",
"main": "dist/svg-path-commander.min.js",
"module": "dist/svg-path-commander.esm.js",
"jsnext": "src/index.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types",
"src"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run lint:js && npm-run-all --parallel build-*",
"custom-build": "rollup -c --environment",
"fix:js": "eslint src/ --config .eslintrc --fix",
"lint:js": "eslint src/ --config .eslintrc",
"build:ts": "tsc -d",
"build-js": "rollup --environment FORMAT:umd,MIN:false -c",
"build-js-min": "rollup --environment FORMAT:umd,MIN:true -c",
"build-esm": "rollup --environment FORMAT:esm,MIN:false -c",
"build-esm-min": "rollup --environment FORMAT:esm,MIN:true -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thednp/svg-path-commander.git"
},
"keywords": [
"svg-path-commander",
"svg path convert",
"svg path reverse",
"svg path data",
"svg path parse",
"svg path transform",
"svg shape to path",
"svg path",
"svg",
"javascript"
],
"author": "thednp",
"license": "MIT",
"bugs": {
"url": "https://github.com/thednp/svg-path-commander/issues"
},
"homepage": "http://thednp.github.io/svg-path-commander",
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-vue": "^7.7.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.38.4",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-terser": "^5.3.1",
"typescript": "^4.5.2"
},
"dependencies": {
"dommatrix": "^0.0.24"
}
}