-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.39 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": "remnants",
"version": "1.3.0",
"description": "Find unused files. Spot these residues, leftovers, relics of an ancient past.",
"main": "index.js",
"module": "src/index.js",
"repository": "https://github.com/MatthieuLemoine/remnants",
"author": "MatthieuLemoine",
"license": "MIT",
"bin": {
"remnants": "index.js"
},
"dependencies": {
"chalk": "^2.4.1",
"conductor": "^1.4.1",
"deglob": "^3.1.0",
"esm": "^3.0.84",
"fs-extra": "^7.0.0",
"ora": "^3.0.0",
"yargs": "^12.0.2"
},
"devDependencies": {
"eslint": "^5.6.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"husky": "^1.1.1",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"prettier-eslint-cli": "^4.7.1"
},
"scripts": {
"test": "./jest.js",
"lint": "eslint .",
"prettify": "prettier-eslint --write \"**/*.js*\" --list-different",
"pretty-check": "prettier-eslint \"**/*.js*\" --list-different",
"check-version": "node scripts/check-version.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.js": [
"prettier-eslint --write --config .prettierrc",
"eslint --fix",
"git add"
],
"*.json": [
"prettier-eslint --write --config .prettierrc",
"git add"
]
}
}
}