-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
57 lines (57 loc) · 1.11 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": "confit",
"version": "3.0.0",
"description": "Environment-aware configuration.",
"main": "index.js",
"engines": {
"node": ">=16"
},
"files": [
"index.js",
"lib/"
],
"directories": {
"test": "test"
},
"scripts": {
"cover": "nyc tap test/**/*-test.js && nyc report -r html",
"test": "tap test/**/*-test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/krakenjs/confit.git"
},
"keywords": [
"application",
"config",
"configuration"
],
"author": "Erik Toth <[email protected]>",
"licenses": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"readmeFilename": "README.md",
"devDependencies": {
"@tapjs/synonyms": "^1.1.19",
"glob": "^7.1.6",
"jshint": "^2.11.0",
"nyc": "^15.1.0",
"tap": "^18.7.0"
},
"dependencies": {
"async": "^2.6.3",
"caller": "^1.0.1",
"minimist": "^1.2.5",
"shortstop": "^1.0.3",
"shortstop-handlers": "^1.0.1",
"shush": "^1.0.0"
},
"tap": {
"plugin": [
"@tapjs/synonyms"
]
}
}