-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 743 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "jsplinter",
"version": "1.0.0",
"main": "index.js",
"dependencies": {
"chart.js": "^2.4.0",
"intro.js": "^2.4.0",
"mathjs": "^3.8.1",
"purecss": "^0.6.1"
},
"devDependencies": {
"svelte-cli": "^1.3.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "set -x; for component in components/*.html; do node ./node_modules/.bin/svelte compile --format iife $component > ${component%.html}.js; done",
"watch": "while [ true ]; do npm run build; inotifywait -e modify -r components/*.html; done"
},
"author": "Francesco Frassinelli",
"license": "AGPL-3.0",
"description": "Spline interpolation",
"repository": "https://github.com/frafra/jsplinter"
}