-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "svg-path-topoly",
"title": "svg-path-topoly",
"version": "1.0.0",
"description": "parse svg PATH to polygon point",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"serve": "cross-env NODE_ENV=development webpack-dev-server --config ./build/webpack.config.js",
"build": "cross-env NODE_ENV=production webpack --config ./build/webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cangshudada/path2poly.git"
},
"keywords": [
"SVG",
"path",
"parse",
"polygon"
],
"author": "cangshudada (https://github.com/cangshudada/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cangshudada/path2poly/issues"
},
"homepage": "https://github.com/cangshudada/path2poly#readme",
"devDependencies": {
"@types/jest": "^25.2.3",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.0.1",
"ts-jest": "^26.0.0",
"ts-loader": "^7.0.5",
"tslint": "^6.1.2",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"svg-path-parser": "^1.1.0"
}
}