-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
81 lines (81 loc) · 2.19 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
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@umn-latis/simple-smoothing-spline",
"description": "Fit a smoothing spline to collection of data points",
"version": "0.4.3",
"license": "MIT",
"repository": "UMN-LATIS/simple-smoothing-spline",
"main": "dist/index.mjs",
"module": "dist/index.min.mjs",
"unpkg": "dist/index.umd.min.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"type": "module",
"exports": "./dist/index.mjs",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"keywords": [
"smoothing",
"spline",
"cubic",
"regression",
"plot",
"data",
"analysis"
],
"scripts": {
"start": "vite",
"dev": "vite",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"test:watch": "npm run test -- --watch",
"lint": "eslint",
"release": "npm run build && release-it && npm run gh-pages",
"clean": "rimraf dist example/dist",
"build": "npm run clean && npm ci && npm run lint && npm run test && tsc && npm run bundle",
"bundle": "rollup -c rollup.config.js",
"gh-pages:build": "vite build && touch example/build/.nojekyll",
"gh-pages:serve": "npx serve example/build",
"gh-pages:publish": "gh-pages --dotfiles --dist example/build",
"gh-pages": "npm run gh-pages:build && npm run gh-pages:publish"
},
"author": {
"name": "James Johnson",
"email": "johnsojr@umn.edu"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/globalthis": "^1.0.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.10",
"concurrently": "^6.2.1",
"eslint": "^7.32.0",
"gh-pages": "^3.2.3",
"jest": "^27.1.0",
"marky": "^1.2.2",
"np": "^7.5.0",
"prettier": "^2.3.2",
"release-it": "^14.11.5",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"rollup-plugin-terser": "^7.0.2",
"serve": "^12.0.0",
"snowpack": "^3.8.8",
"terser": "^5.7.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "^4.4.2",
"vite": "^2.5.3"
},
"dependencies": {
"eigen": "^0.2.0",
"globalthis": "^1.0.2",
"ml-matrix": "^6.8.0"
},
"publishConfig": {
"access": "public"
}
}