-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 992 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 992 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
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "nice-cloud-config-client",
"version": "1.0.1",
"description": "Spring Cloud Config Client for NodeJS",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint:fix": "standard --fix",
"lint": "standard",
"test:unit": "mocha tests/test.js",
"test": "npm run lint && nyc npm run test:unit",
"doc": "jsdoc index.js lib --pedantic --verbose -R README.md -d doc"
},
"engines": {
"node": ">=10"
},
"engineStrict": true,
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"keywords": [
"spring cloud config",
"configuration",
"client",
"config",
"spring",
"spring cloud",
"cloud"
],
"repository": {
"type": "git",
"url": "https://github.com/mattross34/nice-cloud-config-client.git"
},
"author": "Matthew Ross",
"license": "MIT",
"devDependencies": {
"jsdoc": "^3.6.3",
"mocha": "^6.2.2",
"nock": "^11.6.0",
"nyc": "^14.1.1",
"standard": "^14.3.1"
}
}