forked from skarab42/lw.svg-parser
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "lw.svg-parser",
"version": "0.3.2",
"description": "SVG parser for LaserWeb",
"main": "./dist/lw.svg-parser.js",
"scripts": {
"start": "webpack-dev-server --progress --colors",
"build": "npm run build-dev && npm run build-prod",
"build-prod": "webpack -p --progress --colors",
"build-dev": "webpack --progress --colors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lautr3k/lw.svg-parser.git"
},
"keywords": [
"svg",
"parser",
"laserweb"
],
"author": "Sébastien Mischler (skarab, Lautr3k)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lautr3k/lw.svg-parser/issues"
},
"homepage": "https://github.com/lautr3k/lw.svg-parser#readme",
"devDependencies": {
"babel-core": "^6.20.0",
"babel-loader": "^6.2.9",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"clipper-lib": "^6.2.1",
"lw.svg-curves": "^0.1.0",
"lw.svg-path": "^0.1.0"
}
}