-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·68 lines (68 loc) · 1.46 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
64
65
66
67
68
{
"name": "folderslint",
"version": "1.2.0",
"description": "Project directory structure linter",
"main": "index.js",
"scripts": {
"lint": "eslint */*.js",
"test": "jest",
"precommit": "lint-staged && npm test"
},
"keywords": [
"lint",
"linter",
"structure",
"directory",
"folders",
"project"
],
"bin": "index.js",
"files": [
"index.js",
"src"
],
"author": "Denis Raslov <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/denisraslov/folderslint.git"
},
"bugs": {
"url": "https://github.com/denisraslov/folderslint/issues"
},
"homepage": "https://github.com/denisraslov/folderslint#readme",
"dependencies": {
"chalk": "^4.0.0",
"glob": "^7.1.6",
"minimist": "^1.2.0"
},
"devDependencies": {
"babel-preset-env": "^1.6.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^0.14.3",
"jest": "^26.0.0",
"lint-staged": "^7.1.0",
"prettier": "2.7.1",
"pretty-quick": "^3.1.0"
},
"jest": {
"testURL": "http://localhost/"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write"
]
}
}