-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 1.05 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
{
"name": "svg-contour",
"version": "1.0.0",
"description": "contours for svg",
"main": "index.js",
"scripts": {
"test": "mocha --compilers js:babel-core/register",
"build": "browserify src -o dist/svg-contour.js -t babelify",
"start": "npm run watch-serve-example & npm run example",
"watch-serve-example": "watchify src -t babelify -o example/svg-contour.js --debug",
"example": "cd example && http-server -a 0.0.0.0 -p 7777 -o",
"babelify": "watchify src/interactive.js -t babelify -o example/interactive.js"
},
"repository": {
"type": "git",
"url": "https://github.com/fracalo/svg-contour"
},
"author": "Francesco Calo",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-runtime": "^6.18.0",
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"chai": "^3.5.0",
"eslint": "^3.10.2",
"http-server": "^0.9.0",
"mocha": "^3.1.2",
"watchify": "^3.7.0"
},
"dependencies": {}
}