forked from adamkl/cloud-foundry-config-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.52 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
{
"name": "cloud-foundry-config-client",
"version": "1.0.6",
"description": "A basic cloud foundry config client for Node.js",
"main": "./lib/js/cloudFoundryConfigClient.js",
"types": "./lib/types/cloudFoundryConfigClient.d.ts",
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "https://github.com/adamkl/cloud-foundry-config-client"
},
"author": "Adam Kreczko-Lenner",
"license": "MIT",
"keywords": [
"pcf",
"pivotal",
"cloud",
"foundry",
"spring",
"config",
"server"
],
"scripts": {
"build": "gulp build",
"rebuild": "gulp rebuild",
"scrub": "gulp scrub",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"js-yaml": "^3.10.0",
"request": "^2.82.0",
"request-promise-native": "^1.0.4"
},
"devDependencies": {
"@types/jest": "^22.1.0",
"@types/node": "^9.4.0",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-typescript": "^4.0.0",
"jest": "^22.1.4",
"merge2": "^1.2.0",
"run-sequence": "^2.1.0",
"ts-jest": "^22.0.1",
"typescript": "^2.5.2"
},
"jest": {
"coverageDirectory": "<rootDir>/coverage",
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
}
}