forked from soswow/fit-curve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 894 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
{
"name": "fit-curve",
"version": "0.1.6",
"description": "JavaScript implementation of Philip J. Schneider's \"Algorithm for Automatically Fitting Digitized Curves\" from the book \"Graphics Gems\"",
"main": "lib/fit-curve.js",
"scripts": {
"test": "mocha",
"prepublish": "mkdir lib || script/build.sh"
},
"homepage": "https://github.com/soswow/fit-curve",
"bugs": {
"url": "https://github.com/soswow/fit-curve/issues",
"email": "[email protected]"
},
"author": "Philip J. Schneider, Volker Poplawski, Aleksandr Motsjonov",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-es2015-modules-umd": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-loose": "^8.0.0",
"babel-preset-stage-2": "^6.18.0",
"chai": "^3.5.0",
"closurecompiler": "^1.6.1",
"mocha": "^3.2.0"
}
}