-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
68 lines (68 loc) · 1.61 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "cf-nodejs-client",
"version": "0.13.1",
"description": "A Cloud Foundry Client for Node.js",
"author": "Juan Antonio Breña Moral <[email protected]>",
"license": "Apache-2.0",
"main": "index.js",
"scripts": {
"preversion": "npm run lint && npm run test_local",
"lint": "eslint ./lib/model/**/*.js ./lib/utils/*.js",
"test": "npm run lint && npm run test_pws",
"test_local": "mocha test --config=LOCAL_INSTANCE_1",
"test_pws": "mocha test --config=PIVOTAL",
"test_bluemix": "mocha test --config=BLUEMIX"
},
"homepage": "https://github.com/prosociallearnEU/cf-nodejs-client",
"repository": {
"type": "git",
"url": "git+https://github.com/prosociallearnEU/cf-nodejs-client.git"
},
"bugs": {
"url": "https://github.com/prosociallearnEU/cf-nodejs-client/issues"
},
"engines": {
"node": ">=4.2.3",
"npm": ">=2.14.7"
},
"files": [
"index.js",
"lib"
],
"dependencies": {
"bluebird": "3.0.6",
"request": "2.67.0",
"restler": "3.4.0"
},
"devDependencies": {
"archiver": "0.20.0",
"chai": "3.4.1",
"chai-as-promised": "5.1.0",
"eslint": "1.10.3",
"grunt": "0.4.5",
"grunt-cli": "0.1.13",
"grunt-connect": "0.2.0",
"grunt-jsdoc": "1.1.0",
"grunt-open": "0.2.3",
"istanbul": "0.4.1",
"mocha": "2.3.4",
"nconf": "0.8.2",
"optimist": "0.6.1",
"random-words": "0.0.1"
},
"keywords": [
"cloud foundry",
"cloudfoundry",
"cloud-foundry",
"vcap",
"pivotal",
"pivotalcf",
"ibm",
"bluemix",
"cloud",
"api",
"REST",
"cf",
"cf client"
]
}