-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.51 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.51 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "cf-node-client",
"version": "1.0.8",
"description": "A Cloud Foundry Client for Node.js supporting TypeScript and JavaScript.",
"author": "Leo Trinh <tinhtd.info@gmail.com>",
"license": "Apache-2.0",
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"preversion": "npm run lint && npm run test",
"lint": "eslint ./lib/**/*.js ./test/**/*.js",
"lint:fix": "eslint . --fix",
"tsc:check": "tsc --noEmit",
"precheck":"npm run build && npm run test",
"test": "npm run lint && npm run test:unit",
"test:unit": "mocha test/lib/ApiMigrationTests.js test/lib/ConvenienceMethodTests.js test/lib/PaginationCacheTests.js test/lib/V3AuditFixTests.js test/lib/V3AuditFixMediumLowTests.js test/lib/V3MediumFixTests.js test/utils/ZipGeneratorTests.js test/utils/HttpUtilsTests.js --timeout 5000",
"test:integration": "mocha test/lib/model --config=LOCAL_INSTANCE_1 --timeout 30000",
"build": "tsc",
"pub:dry": "npm publish --dry-run",
"m:publish": "npm run pub:dry && npm publish",
"m:prepublishOnly": "npm test && npm run lint",
"docs": "grunt jsdoc:dist && node scripts/inject-jsdoc-banner.js",
"docs:serve": "grunt docs"
},
"homepage": "https://leotrinh.github.io/cf-node-client/doc/",
"repository": {
"type": "git",
"url": "git+https://github.com/leotrinh/cf-node-client.git"
},
"bugs": {
"url": "https://github.com/leotrinh/cf-node-client/issues"
},
"files": [
"index.js",
"lib",
"types"
],
"dependencies": {
"form-data": "^4.0.0",
"node-fetch": "^2.7.0",
"protobufjs": "^7.0.0",
"ws": "^8.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"archiver": "^7.0.0",
"bluebird": "^3.7.2",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"eslint": "^8.57.1",
"grunt": "^1.6.1",
"grunt-contrib-connect": "^5.0.1",
"grunt-jsdoc": "^2.4.1",
"grunt-open": "^0.2.4",
"mocha": "^10.8.0",
"nconf": "^0.13.0",
"optimist": "0.6.1",
"random-words": "0.0.1",
"typescript": "^5.0.0"
},
"overrides": {
"minimist": "^1.2.8",
"serialize-javascript": "^7.0.3"
},
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"sap",
"sap btp",
"cloudfoundry client",
"sap btp cf",
"sap btp cloudfoundry",
"sap cf",
"cloud foundry",
"cloudfoundry",
"cloud-foundry",
"vcap",
"pivotal",
"pivotalcf",
"ibm",
"bluemix",
"cloud",
"api",
"REST",
"cf",
"cf client",
"typescript",
"types"
]
}