-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
41 lines (41 loc) · 901 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
{
"name": "cubic-spline",
"version": "3.0.3",
"description": "spline interpolation",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "node test.js",
"lint": "prettier **/*.js **/*.json --write",
"prepublishOnly": "npm run build"
},
"files": [
"index.js",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/morganherlocker/cubic-spline.git"
},
"keywords": [
"cubic",
"spline",
"interpolation",
"line",
"smooth",
"smoothing"
],
"author": "morganherlocker",
"license": "MIT",
"bugs": {
"url": "https://github.com/morganherlocker/cubic-spline/issues"
},
"homepage": "https://github.com/morganherlocker/cubic-spline",
"devDependencies": {
"prettier": "2.7.1",
"tape": "^5.6.1",
"typescript": "~4.8.4"
}
}