forked from prosociallearnEU/cf-nodejs-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.74 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
69
70
{
"name": "cf-client",
"version": "0.13.25",
"description": "A Cloud Foundry Client for Node.js",
"author": "Juan Antonio Breña Moral <bren@juanantonio.info>",
"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",
"uml": "node ./node_modules/wavi/bin/wavi --png ./lib/ ./docs/umlDiagram.png --includenodemodules"
},
"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.0.6",
"protobufjs": "5.0.1",
"request": "2.67.0",
"restler": "3.4.0",
"ws": "1.1.1"
},
"devDependencies": {
"archiver": "0.20.0",
"chai": "3.4.1",
"chai-as-promised": "5.1.0",
"eslint": "^2.11.1",
"eslint-config-strongloop": "^2.0.1",
"istanbul": "0.4.1",
"mocha": "2.3.4",
"nconf": "0.8.2",
"optimist": "0.6.1",
"random-words": "0.0.1",
"wavi": "0.2.16"
},
"keywords": [
"cloud foundry",
"cloudfoundry",
"cloud-foundry",
"vcap",
"pivotal",
"pivotalcf",
"ibm",
"bluemix",
"cloud",
"api",
"REST",
"cf",
"cf client",
"paas"
]
}