-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
38 lines (38 loc) · 891 Bytes
/
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": "node-zenhub",
"version": "1.2.2",
"description": "ZenHub API wrapper",
"author": "Matteo Magni <[email protected]> (magni.me)",
"license": "MIT",
"keywords": [
"zenhub",
"zenhub-api"
],
"homepage": "https://github.com/ilbonzo/node-zenhub",
"scripts": {
"test": "mocha test",
"coverage": "cp test/config.sample.json test/config.json && nyc --reporter=html --reporter=text mocha",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/ilbonzo/node-zenhub.git"
},
"main": "./lib/zenhub.js",
"directories": {
"test": "test"
},
"engines": {
"node": ">=5.0.0"
},
"dependencies": {
"request": "^2.88.0",
"xtend": "^4.0.2"
},
"devDependencies": {
"coveralls": "^3.0.7",
"mocha": "^6.2.1",
"nock": "^11.4.0",
"nyc": "^14.1.1"
}
}