-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (59 loc) · 1.63 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
66
{ "name": "parametric-svg"
, "version": "0.0.5"
, "description": "Parametric 2D graphics in the browser. With pure SVG."
, "scripts":
{ "develop": "nodangel --watch source --watch test --exec npm test"
, "test": "browserify test.js --transform babelify | tape-run --browser=phantom | tap-spec"
, "test-in-browser": "echo 'Hold on a second – preparing fresh-baked tests for you...' && browserify test.js --transform babelify > test/runner/bundle.js && echo '...ready! Now navigate your browser to http://localhost:9001 to run them\\nand open the browser console to see the results.\\n' && cd test/runner && http-server -c-1 -p 9001"
, "prepublish": "gulp build"
}
, "dependencies":
{ "acorn": "0.12.0"
, "as": "0.4.1"
, "babel": "4.4.3"
, "eval-expression": "0.1.1"
}
, "devDependencies":
{ "babelify": "5.0.3"
, "browserify": "8.1.3"
, "http-server": "0.7.5"
, "nodangel": "1.3.8"
, "tap-spec": "2.2.1"
, "tape-run": "1.0.0"
, "async": "0.9.0"
, "domify": "1.3.1"
, "tape-catch": "1.0.4"
, "gulp": "3.8.11"
, "gulp-babel": "4.0.0"
, "gulp-concat": "2.5.2"
, "gulp-dox": "0.1.3"
, "gulp-doxme": "1.8.0"
, "gulp-mustache": "1.0.2"
, "gulp-rename": "1.2.0"
}
, "main": "dist.es5/parametric-svg.js"
, "files":
[ "/dist.es5/"
, "/dist.es6/"
, "/Readme.md"
, "/License.md"
]
, "author": "Tomek Wiszniewski <[email protected]>"
, "license": "MIT"
, "keywords":
[ "svg"
, "parametric"
, "dynamic"
, "graphics"
, "visualisation"
, "drawings"
, "2d"
, "vector"
, "cad"
, "processing"
]
, "repository":
{ "type": "git"
, "url": "[email protected]:parametric-svg/js.git"
}
}