forked from Nordstrom/config
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.18 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
{
"name": "config-yml",
"version": "0.10.3",
"description": "Simple Yaml Config for Node.js",
"main": "index.js",
"scripts": {
"test": "standard | snazzy && mocha",
"coverage": "nyc --reporter=lcov --reporter=text mocha",
"coveralls": "nyc --reporter=text-lcov mocha | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nordstrom/config.git"
},
"keywords": [
"Config",
"Yaml",
"Yml",
"Configuration",
"Settings",
"Parameters",
"Node.js",
"Stack",
"Deploy"
],
"author": "Andy Day",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nordstrom/config/issues"
},
"homepage": "https://github.com/Nordstrom/config#readme",
"standard": {
"globals": [
"describe",
"it",
"before",
"after"
]
},
"dependencies": {
"js-yaml": "^3.6.1",
"lodash": "^4.13.1",
"moment": "^2.13.0",
"shelljs": "^0.7.0",
"yargs": "^4.7.1"
},
"devDependencies": {
"coveralls": "^3.0.1",
"decache": "^3.1.0",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"should": "^9.0.2",
"sinon": "^1.17.4",
"snazzy": "^7.0.0",
"standard": "^11.0.1"
}
}