forked from jsonw23/config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.22 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
{
"name": "@stefcud/configyml",
"version": "1.2.3",
"description": "simple and smart Yaml configurator for NodeJs applications",
"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/stefanocudini/configYml.git"
},
"keywords": [
"Config",
"Yaml",
"Yml",
"Configuration",
"Settings",
"Parameters",
"config.yml"
],
"author": "Stefano Cudini stefano.cudini@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/stefanocudini/configyml/issues"
},
"homepage": "https://github.com/stefanocudini/configyml#readme",
"standard": {
"globals": [
"describe",
"it",
"before",
"after"
]
},
"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",
"shelljs": "^0.8.4"
},
"dependencies": {
"js-yaml": "^3.14.0",
"lodash": "^4.17.20",
"yargs": "^4.7.1"
}
}