-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.32 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
{
"name": "webpack-unused-scaner",
"version": "1.0.2",
"description": "A webpack plugin to find unused modules/source files",
"main": "index.js",
"repository": "https://github.com/rainpure/webpack-unused-scaner.git",
"author": "MatthieuLemoine",
"license": "MIT",
"scripts": {
"test": "jest",
"lint": "eslint .",
"prettify": "prettier-eslint --write \"**/*.js*\" --list-different",
"pretty-check": "prettier-eslint \"**/*.js*\" --list-different",
"check-version": "node scripts/check-version.js"
},
"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"
},
"dependencies": {
"chalk": "^2.1.0",
"deglob": "^3.1.0",
"ora": "^3.0.0"
},
"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"
]
}
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/examples/"
]
}
}