forked from Radiergummi/hetzner-api-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (37 loc) · 925 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
{
"name": "hetzner-api-client",
"version": "0.2.1",
"description": "A NodeJS client for the Hetzner Robot API",
"keywords": [
"hetzner",
"api",
"client"
],
"homepage": "https://github.com/Radiergummi/hetzner-api-client",
"bugs": {
"url": "https://github.com/Radiergummi/hetzner-api-client/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/Radiergummi/hetzner-api-client"
},
"license": "Apache-2.0",
"author": "Moritz Friedrich <[email protected]> (http://moritzfriedrich.com)",
"engines": {
"node": ">=6.2.0"
},
"dependencies": {
"colors": "^1.1.2",
"node-rest-client": "^1.8.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"mocha": "^2.5.3",
"restify": "^4.1.0"
},
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec test/apiClientTests.js"
}
}