-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
36 lines (36 loc) · 948 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
{
"name": "softlayer-node",
"version": "0.2.3",
"description": "Softlayer API Wrapper for node",
"main": "./lib/softlayer.js",
"scripts": {
"test": "./node_modules/.bin/mocha ./test/**/*-test.js --reporter spec || exit 0",
"eslint": "./node_modules/.bin/eslint . || exit 0"
},
"repository": {
"type": "git",
"url": "https://github.com/pmpkin/softlayer-node.git"
},
"keywords": [
"softlayer",
"api"
],
"author": "Michael Wibmer <michael@pmpkin.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pmpkin/softlayer-node/issues"
},
"homepage": "https://github.com/pmpkin/softlayer-node",
"dependencies": {
"bluebird": "^2.9.13",
"request": "^2.75.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.5.0",
"eslint-config-formidable": "^1.0.1",
"eslint-plugin-filenames": "^1.1.0",
"eslint-plugin-import": "^1.16.0",
"mocha": "^3.0.2"
}
}