forked from kalisio/water-level-forecasting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.15 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
{
"name": "@kalisio/k-hubeau-forecasting",
"description": "Water level forecasting using AI",
"version": "0.1.0",
"homepage": "https://github.com/k-hubeau-forecasting",
"keywords": [
"forecasting",
"artificial intelligence"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/kalisio/k-hubeau-forecasting.git"
},
"author": {
"name": "Kalisio contributors",
"url": "https://github.com/kalisio"
},
"contributors": [],
"bugs": {
"url": "https://github.com/kalisio/k-hubeau-forecasting/issues"
},
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"changelog": "github_changelog_generator -u kalisio -p k-hubeau-forecasting && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"data": "node hubeau_data.js"
},
"dependencies": {
"commander": "^4.1.1",
"debug": "^4.1.1",
"fast-csv": "^4.0.2",
"superagent": "^5.2.1"
},
"devDependencies": {}
}