-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 846 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 846 Bytes
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
{
"name": "forecast",
"version": "0.1.0",
"description": "Forecasting in the browser",
"main": "process.js",
"scripts": {
"build": "browserify src/process.js -s Process | uglifyjs -cm > process.js && browserify src/render.js -s Render | uglifyjs -cm > render.js",
"build-dev": "browserify src/process.js -s Process > process.js && browserify src/render.js -s Render > render.js",
"watch": "nodemon --watch src --ext js,css,html --exec 'npm run build-dev'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Anton Zemlyansky",
"license": "ISC",
"dependencies": {
"arima": "^0.1.0",
"autotuner": "^0.1.0",
"csv-parse": "^4.9.0",
"online-autocorrelation": "0.0.1",
"plotly.js": "^1.53.0"
},
"devDependencies": {
"browserify": "^16.5.1",
"uglify-es": "^3.3.9"
}
}