-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
{
"name": "teraslice-top",
"version": "0.0.0-development",
"description": "Teraslice Cluster Activity Monitoring Tool",
"main": "index.js",
"scripts": {
"test": "standard --env jasmine && node node_modules/.bin/jasmine",
"lint": "eslint .",
"docs": "jsdoc -R README.md -P package.json -r lib/ index.js",
"clean": "rm -rf out",
"clean-all": "rm -rf out node_modules",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"style": "standard --env jasmine --verbose | snazzy || true"
},
"repository": {
"type": "git",
"url": "https://github.com/godber/teraslice-top"
},
"keywords": [
"teraslice"
],
"author": "Austin Godber",
"license": "BSD-2-Clause",
"bin": {
"ts-top": "index.js"
},
"dependencies": {
"bluebird": "^3.5.0",
"jetty": "^0.2.1",
"request": "^2.75.0",
"request-promise": "^4.1.1",
"yargs": "^15.1.0"
},
"devDependencies": {
"jasmine": "^2.5.2",
"jsdoc": "^3.6.3",
"semantic-release": "^15.14.0",
"standard": "^10.0.3"
},
"publishConfig": {
"tag": "dev"
}
}