forked from kjerandp/curve-interpolator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.65 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
{
"private": false,
"name": "curve-interpolator",
"version": "2.0.6",
"description": "Interpolate values on a Cardinal/Catmull-Rom spline curve",
"repository": "https://github.com/kjerandp/curve-interpolator",
"bugs": {
"url": "https://github.com/kjerandp/curve-interpolator/issues"
},
"author": "Kjerand Pedersen",
"license": "MIT",
"keywords": [
"cubic",
"cardnial",
"catmull-rom",
"curve",
"interpolate",
"interpolator",
"spline",
"analysis"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c",
"prepub": "npm run build",
"pub": "npm publish --access=public",
"test": "mocha -r ts-node/register test/**/*.spec.ts",
"test:watch": "mocha -r ts-node/register test/**/*.spec.ts --reporter min --watch --watch-extensions ts",
"predocs": "rimraf docs",
"docs": "typedoc --out docs src --module es6",
"postdocs": "copyfiles _config.yml docs"
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.js",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"copyfiles": "^2.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"mocha": "^6.2.3",
"rimraf": "^3.0.2",
"rollup": "^1.32.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.24.3",
"ts-node": "^8.8.2",
"typedoc": "^0.15.8",
"typescript": "^3.8.3"
},
"files": [
"dist"
],
"types": "dist/index.d.ts",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}