-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (33 loc) · 1001 Bytes
/
package.json
File metadata and controls
34 lines (33 loc) · 1001 Bytes
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
{
"name": "cloud-foundry",
"description": "A Cloud Foundry api client that is compatible with the Cloud Foundry v2 api.",
"version": "0.0.3",
"homepage": "https://github.com/ActiveState/cloud-foundry-client-js",
"author": "Tyler Power <[email protected]> (https://github.com/Diggs)",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/ActiveState/cloud-foundry-client-js/blob/master/LICENSE.md"
}
],
"repository": {
"type": "git",
"url": "https://github.com/ActiveState/cloud-foundry-client-js.git"
},
"dependencies": {
"amdefine": ">=0.1.0",
"underscore": "1.5.2",
"request": "2.30.0"
},
"devDependencies": {
"mocha": "1.16.2",
"expect.js": "0.2.0"
},
"main": "./api.js",
"scripts": {
"test": "find ./ -name 'test.*.js' | grep -v node_modules | xargs mocha -R spec"
},
"engines": {
"node": ">=0.4.2"
}
}