-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
69 lines (69 loc) · 1.82 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
64
65
66
67
68
69
{
"private": false,
"name": "curve-interpolator",
"version": "3.3.1",
"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",
"cardinial",
"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",
"test:watch": "mocha --reporter min --watch --watch-extensions ts",
"predocs": "rimraf docs",
"docs": "typedoc --out docs src/index.ts",
"postdocs": "copyfiles _config.yml docs",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.js",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.2.1",
"@rollup/plugin-typescript": "^10.0.1",
"@types/chai": "^4.2.14",
"@types/mocha": "^5.2.7",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"chai": "^4.3.7",
"copyfiles": "^2.4.1",
"eslint": "^8.31.0",
"eslint-import-resolver-typescript": "^3.5.2",
"mocha": "^10.2.0",
"rimraf": "^3.0.2",
"rollup": "^3.9.1",
"sinon": "^15.0.1",
"ts-node": "^10.9.1",
"typedoc": "^0.23.23",
"typedoc-plugin-missing-exports": "^1.0.0",
"typescript": "^4.9.4"
},
"files": [
"dist"
],
"types": "dist/src/index.d.ts",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}