-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.7 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
69
70
71
{
"name": "webpack-plugin-unpolyfill",
"version": "1.0.1",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/4Catalyzer/webpack-plugin-unpolyfill.git"
},
"author": "4Catalyzer",
"license": "MIT",
"scripts": {
"tdd": "jest --watch",
"test": "npm run lint",
"testonly": "jest",
"lint": "eslint . && prettier --list-different --ignore-path .eslintignore '**/*.{json,css,md}'",
"format": "eslint . --fix && prettier --write --ignore-path .eslintignore '**/*.{json,css,md}'"
},
"publishConfig": {
"access": "public"
},
"prettier": {
"printWidth": 79,
"singleQuote": true,
"trailingComma": "all"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --fix",
"*.{json,css,md}": "prettier --write --ignore-path .eslintignore"
},
"jest": {
"roots": [
"<rootDir>/test"
],
"testEnvironment": "node"
},
"release": {
"extends": [
"@4c/semantic-release-config"
]
},
"devDependencies": {
"@4c/rollout": "^2.1.11",
"@4c/semantic-release-config": "^2.0.14",
"babel-eslint": "^10.1.0",
"eslint": "^7.15.0",
"eslint-config-4catalyzer": "^1.1.5",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"semantic-release": "^17.3.0",
"travis-deploy-once": "^5.0.11",
"webpack": "^5.10.1"
},
"dependencies": {
"lodash": "^4.17.19",
"semver": "^7.0.0"
},
"peerDependencies": {
"webpack": "^4.20.2"
}
}