-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.33 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.33 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
59
60
61
62
63
{
"name": "index-modules",
"version": "0.4.3",
"license": "ISC",
"description": "Generate an index of all modules in a directory",
"keywords": [
"directory",
"folder",
"generate",
"generation",
"index",
"indexing",
"module",
"modules"
],
"homepage": "https://github.com/JsCommunity/index-modules",
"bugs": "https://github.com/JsCommunity/index-modules/issues",
"repository": {
"type": "git",
"url": "https://github.com/JsCommunity/index-modules"
},
"author": {
"name": "Julien Fontanet",
"email": "julien.fontanet@isonoe.net"
},
"preferGlobal": false,
"bin": {
"index-modules": "index.js"
},
"files": [
"index.js"
],
"engines": {
"node": ">=6"
},
"dependencies": {
"getopts": "^2.3.0",
"lodash": "^4.17.4",
"promise-toolbox": "^0.19.0"
},
"devDependencies": {
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --ignore-pattern '!*'"
]
}
}