-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
81 lines (81 loc) · 2.09 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "spring-cloud-config",
"version": "4.6.6",
"description": "NodeJS application configuration using similar style to Spring Config and using the Spring Cloud Config Server for remote property sources.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@hapi/joi": "^15.1.0",
"extend": "^3.0.2",
"inversify": "^5.0.1",
"js-yaml": "^3.12.0",
"logform": "^2.1.2",
"nice-cloud-config-client": "^1.0.1",
"reflect-metadata": "^0.1.13",
"winston": "^3.2.1",
"yargs": "^13.3.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.1",
"@types/chai": "4.2.7",
"@types/chai-as-promised": "7.1.2",
"@types/mocha": "5.2.7",
"@types/node": "12.12.22",
"@types/sinon": "7.5.1",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"coveralls": "3.0.9",
"decache": "4.5.1",
"jsdoc": "3.6.3",
"mocha": "6.2.2",
"mocha-lcov-reporter": "1.3.0",
"nyc": "15.0.0",
"sinon": "7.5.0",
"source-map-support": "0.5.16",
"ts-loader": "6.2.1",
"ts-node": "8.6.2",
"typescript": "3.7.4"
},
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf dist",
"test": "nyc mocha && nyc report --reporter=text-lcov | coveralls",
"test:local": "nyc mocha --require ts-node/register",
"prepublish": "npm run build",
"doc": "jsdoc index.js -R README.md -d doc",
"typecheck": "tsc --noEmit",
"lint": "tslint --project . --format stylish"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": false,
"check-coverage": true,
"require": [
"ts-node/register",
"source-map-support/register"
],
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"**/*.js",
"**/models.ts",
"test"
]
},
"author": "Matthew Ross",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/mattross34/spring-cloud-config.git"
},
"keywords": [
"Spring Cloud",
"Cloud Config",
"Spring Cloud Config",
"configuration",
"client",
"config server"
]
}