-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
37 lines (37 loc) · 909 Bytes
/
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
{
"name": "cloud-config-client",
"version": "1.6.2",
"description": "Spring Cloud Config Client for NodeJS",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "standard",
"test:unit": "mocha tests/*.spec.js",
"test": "npm run lint && nyc npm run test:unit",
"doc": "jsdoc index.js lib --pedantic --verbose -R README.md -d doc"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"keywords": [
"Spring Cloud Config",
"configuration",
"client"
],
"repository": {
"type": "git",
"url": "https://github.com/victorherraiz/cloud-config-client.git"
},
"author": "Víctor Herraiz Posada <victor.herraiz@gmail.com> (https://github.com/victorherraiz)",
"license": "MIT",
"devDependencies": {
"@types/node": "^17.0.23",
"jsdoc": "^3.6.7",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"standard": "^16.0.3"
}
}