-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
45 lines (45 loc) · 1 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
{
"name": "zabbix-promise",
"version": "2.0.2",
"description": "Simplified Zabbix API Client",
"main": "index.js",
"scripts": {
"cb": "checkbashisms ./tasks/*.sh; exit 0",
"sc": "shellcheck -s bash -Calways ./tasks/*.sh",
"pretest": "npm run cb && npm run sc",
"test": "bash ./tasks/test.sh",
"jsdoc": "jsdoc -d docs -R README.md lib && open docs/index.html",
"up": "rm -rf ./node_modules package-lock.json && npm i"
},
"files": [
"index.js",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sumitgoelpw/zabbix-promise.git"
},
"keywords": [
"Zabbix",
"API"
],
"author": {
"name": "Sumit Goel"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/sumitgoelpw/zabbix-promise/issues"
},
"homepage": "https://github.com/sumitgoelpw/zabbix-promise#readme",
"devDependencies": {
"jsdoc": "*",
"nock": "*",
"standard": "*",
"tap": "*"
},
"standard": {
"ignore": [
"docs"
]
}
}