forked from volkerp/fitCurves
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
35 lines (35 loc) · 1.04 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
{
"name": "fit-curve",
"version": "0.2.0",
"description": "JavaScript implementation of Philip J. Schneider's \"Algorithm for Automatically Fitting Digitized Curves\" from the book \"Graphics Gems\"",
"main": "lib/fit-curve.js",
"types": "fit-curve.d.ts",
"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": "soswow@gmail.com"
},
"author": "Philip J. Schneider",
"contributors": [
"Volker Poplawski <volkerp>",
"Aleksandr Motsjonov <soswow>",
"<Yay295>",
"Andreas Borgen <Sphinxxxx>",
"Tom Brewe <nylki>"
],
"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",
"google-closure-compiler": "^20200426.0.0",
"mocha": "^7.1.2"
}
}