-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.08 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
{
"name": "config-registry",
"version": "1.0.0",
"description": "Handle environment configs on mongo database to be shared across multiple microservices",
"homepage": "https://github.com/compuhelmac/config-registry",
"author": {
"name": "Helmac.ca",
"email": "[email protected]",
"url": "https://github.com/compuhelmac/"
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"config registry mongo environments microservices"
],
"devDependencies": {
"eslint": "^4.1.0",
"eslint-config-xo-space": "^0.16.0",
"jest": "^19.0.2",
"jest-cli": "^20.0.0",
"nock": "^9.0.14",
"nsp": "^2.6.3"
},
"scripts": {
"prepublish": "nsp check",
"pretest": "eslint . --fix",
"test": "jest"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"jest": true,
"node": true
}
},
"repository": "compuhelmac/config-registry",
"jest": {
"testEnvironment": "node",
"collectCoverage": true
},
"license": "MIT",
"dependencies": {
"lodash": "^4.17.4",
"mongodb": "^2.2.30"
}
}