-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.32 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.32 KB
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
{
"name": "dots-config",
"version": "2.1.1",
"description": "App configuration made simple for Node.js",
"main": "app.js",
"scripts": {
"bdd-test": "cd tests && mocha ./**.spec.js",
"unit-test": "mocha ./lib/**.spec.js",
"test": "npm run bdd-test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Terran-Source/node-dot-config.git"
},
"keywords": [
"configuration",
"config",
"dotconfig",
"dots-config",
"node",
"nodejs"
],
"author": "Tamal Patra <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Terran-Source/node-dot-config/issues"
},
"homepage": "https://github.com/Terran-Source/node-dot-config#readme",
"publishConfig": {
"access": "public"
},
"contributors": [
{
"name": "Tamal Patra",
"email": "[email protected]",
"url": "https://sourcerer.io/turn-a-round",
"contributions": 100,
"hireable": true
}
],
"dependencies": {
"custom-exception": "^0.1.2",
"extend": "^3.0.2",
"interpolate-json": "^2.2.2",
"type-detect": "^4.0.8"
},
"devDependencies": {
"chai": "^4.3.4",
"del": "^6.0.0",
"gulp": "^4.0.2",
"gulp-terser": "^2.1.0",
"mocha": "^9.1.3",
"readable-stream": "^3.6.0"
},
"engines": {
"node": ">=12.0.0"
}
}