-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "nd-bezier",
"version": "3.0.1",
"packageManager": "yarn@3.2.3",
"main": "./lib/static-bezier.js",
"types": "./lib/static-bezier.d.ts",
"scripts": {
"build": "tsc",
"build-performance": "tsc -p tsconfig-testing.json",
"run-performance": "node lib-testing/tests/test-performance.js && node lib-testing/tests/test-arc-length-performance.js",
"test": "mocha ./tests/test.js",
"lint": "eslint src"
},
"repository": "https://github.com/Feirell/nd-bezier.git",
"author": "Florian Völker <Neirolf2030@web.de>",
"license": "MIT",
"dependencies": {
"linear-quadratic-cubic-eq-solver": "^1.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"bezier": "^0.1.0",
"eslint": "^8.24.0",
"mocha": "^8.3.1",
"performance-test-runner": "^0.1.2",
"typescript": "4.8.3"
},
"files": [
"lib"
],
"bugs": {
"url": "https://github.com/Feirell/nd-bezier/issues"
},
"keywords": [
"bezier",
"curve",
"spline",
"animation",
"interpolation",
"3d",
"2d"
]
}