-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.22 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.22 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
{
"name": "app-conf",
"version": "3.1.1",
"license": "ISC",
"author": "Julien Fontanet <julien.fontanet@isonoe.net> (http://julien.isonoe.net/)",
"description": "",
"keywords": [],
"homepage": "https://github.com/julien-f/nodejs-app-conf",
"bugs": "https://github.com/julien-f/nodejs-app-conf/issues/",
"repository": {
"type": "git",
"url": "https://github.com/julien-f/nodejs-app-conf"
},
"files": [
"_pMap.js",
"_merge.js",
"_readFile.js",
"cli.js",
"entries.js",
"index.js",
"serializers.js",
"unknown-format-error.js"
],
"bin": "./cli.js",
"engines": {
"node": ">=16"
},
"dependencies": {
"chokidar": "^4.0.3",
"debug": "^4.4.0",
"glob": "^10.4.5",
"lodash": "^4.17.21",
"xdg-basedir": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"globals": "^15.14.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mock-fs": "^5.4.1",
"prettier": "^3.4.2",
"test": "^3.3.0"
},
"scripts": {
"test": "node--test && true",
"prepare": "husky"
},
"lint-staged": {
"*": [
"npm test",
"prettier --ignore-unknown --write"
],
"*.{{,c,m}j,t}s{,x}": "eslint --ignore-pattern '!*'"
}
}