forked from prosociallearnEU/cf-nodejs-client
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
68 lines (68 loc) · 1.63 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-client3",
"version": "0.13.28",
"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 test",
"lint": "eslint ./lib/model/**/*.js ./lib/utils/*.js",
"lint:fix": "eslint --fix ./lib/model/**/*.js ./lib/utils/*.js",
"test": "npm run lint && npm run test:bluemix",
"test:local": "mocha test --config=LOCAL_INSTANCE_1",
"test:pws": "mocha test --config=PIVOTAL",
"test:bluemix": "mocha test --config=BLUEMIX"
},
"homepage": "https://github.com/IBM-Bluemix/cf-nodejs-client",
"repository": {
"type": "git",
"url": "git+https://github.com/IBM-Bluemix/cf-nodejs-client.git"
},
"bugs": {
"url": "https://github.com/IBM-Bluemix/cf-nodejs-client/issues"
},
"engines": {
"node": ">=4.2.3",
"npm": ">=2.14.7"
},
"files": [
"index.js",
"lib"
],
"dependencies": {
"bluebird": "^3.5.5",
"protobufjs": "^5.0.1",
"request": "^2.88.0",
"restler": "^3.4.0",
"ws": "^7.0.1"
},
"devDependencies": {
"archiver": "^3.0.0",
"chai": "3.4.1",
"chai-as-promised": "5.1.0",
"eslint": "^2.11.1",
"eslint-config-strongloop": "^2.0.1",
"istanbul": "0.4.5",
"mocha": "^6.1.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",
"paas"
]
}