-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1000 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
33
34
35
36
37
38
39
40
41
42
43
{
"name": "bezier-spline",
"version": "2.0.0",
"description": "Creates splines using Bezier curves over an arbitrary number of dimensions.",
"keywords": [
"spline",
"bezier",
"graphics",
"path",
"curve"
],
"main": "src/index.js",
"files": [
"src/*"
],
"scripts": {
"test": "standard && nyc --reporter=html --reporter=text mocha -u tdd",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"docs": "rm -rf docs/* && jsdoc src -d docs -P ./package.json -R ./README.md && mv docs/**/**/* docs/ && rm -r docs/bezier-spline"
},
"standard": {
"env": "mocha",
"ignore": [
"docs"
]
},
"author": "Bryce Wilson",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Zunawe/bezier-spline"
},
"dependencies": {
"vecn": "^1.3.0"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"standard": "^11.0.1"
}
}