-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
63 lines (63 loc) · 1.33 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
{
"name": "configya",
"version": "0.2.3",
"description": "Config files that defer to env settings.",
"homepage": "https://github.com/LeanKit-Labs/configya",
"main": "src/configya.js",
"scripts": {
"test:only": "NODE_ENV=test mocha --exit -R spec 'spec/**/*.spec.js'",
"test": "npm run cover",
"cover": "nyc -r text-summary -r html -- npm run test:only",
"cover:show": "open \"file://$PWD/coverage/index.html\""
},
"contributors": [
{
"name": "Alex Robson",
"email": "[email protected]",
"url": "http://github.com/arobson"
},
{
"name": "Josh Bush",
"url": "http://digitalbush.com"
},
{
"name": "Doug Neiner",
"url": "http://code.dougneiner.com"
},
{
"name": "Jim Cowart",
"url": "http://ifandelse.com"
},
{
"name": "Ryan Niemeyer",
"url": "http://knockmeout.net/"
}
],
"author": "LeanKit",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"license": "MIT License - http://opensource.org/licenses/MIT",
"repository": {
"type": "git",
"url": "git://github.com/LeanKit-Labs/configya.git"
},
"devDependencies": {
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"open": "^7.3.0",
"should": "~3.2.0-beta1"
},
"dependencies": {
"lodash": "^4.17.20"
},
"nyc": {
"exclude": [
"coverage",
"spec"
],
"sourceMap": false,
"instrument": true,
"all": true
}
}