-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
46 lines (46 loc) · 901 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
39
40
41
42
43
44
45
46
{
"name": "heroku-client",
"description": "A wrapper for the Heroku v3 API",
"version": "3.1.0",
"author": "Heroku",
"bugs": {
"url": "https://github.com/heroku/node-heroku-client/issues"
},
"contributors": [
"Jonathan Clem",
"Jeff Dickey",
"Ray McDermott",
"Bob Zoller",
"Sehrope Sarkuni"
],
"dependencies": {
"is-retry-allowed": "^1.0.0",
"tunnel-agent": "^0.6.0"
},
"devDependencies": {
"ava": "^0.18.0",
"debug": "^3.1.0",
"nock": "^11.7.0",
"nyc": "^11.3.0",
"standard": "^10.0.3",
"stdout-stderr": "^0.1.9"
},
"engines": {
"node": ">=6.0.0"
},
"files": [
"lib"
],
"keywords": [
"heroku"
],
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/heroku/node-heroku-client"
},
"scripts": {
"test": "nyc ava && standard"
}
}