-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
32 lines (32 loc) · 890 Bytes
/
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
{
"name": "svg-curve-lib",
"version": "0.2.0",
"description": "Bezier Curve and Elliptical Arc implementations - SVG Path commands",
"main": "src/js/svg-curve-lib.js",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha ./test/js/test.js",
"testSetupArduino": "node ./node_modules/gulp/bin/gulp.js"
},
"repository": {
"type": "git",
"url": "https://github.com/MadLittleMods/svg-curve-lib.git"
},
"author": "Eric Eastwood <[email protected]>",
"bugs": {
"url": "https://github.com/MadLittleMods/svg-curve-lib/issues"
},
"homepage": "https://github.com/MadLittleMods/svg-curve-lib",
"keywords": [
"svg",
"paths"
],
"devDependencies": {
"bluebird": "^2.9.16",
"chai": "^2.1.2",
"chai-as-promised": "^4.3.0",
"del": "^1.1.1",
"gulp": "^3.8.11",
"mocha": "^2.2.1",
"run-sequence": "^1.0.2"
}
}