-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
77 lines (77 loc) · 2.29 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
72
73
74
75
76
77
{
"name": "webpack-modernizr-loader",
"version": "5.0.0",
"description": "Get your modernizr build bundled with webpack, use modernizr with webpack easily",
"repository": {
"type": "git",
"url": "https://github.com/itgalaxy/webpack-modernizr-loader.git"
},
"homepage": "https://github.com/itgalaxy/webpack-modernizr-loader",
"keywords": [
"modernizr",
"webpack",
"loader"
],
"author": "itgalaxy <[email protected]>",
"bugs": {
"url": "https://github.com/itgalaxy/webpack-modernizr-loader/issues"
},
"license": "MIT",
"main": "index.js",
"files": [
"index.js"
],
"engines": {
"node": ">= 6.9.0"
},
"dependencies": {
"loader-utils": "^1.0.0",
"modernizr": "^3.7.1"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"eslint": "^5.15.0",
"eslint-plugin-ava": "^5.1.1",
"eslint-plugin-html": "^5.0.3",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-itgalaxy": "^98.0.0",
"eslint-plugin-jest": "^22.3.0",
"eslint-plugin-jsx-a11y": "^6.0.0",
"eslint-plugin-lodash": "^5.1.0",
"eslint-plugin-markdown": "^1.0.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-unicorn": "^7.1.0",
"husky": "^1.3.1",
"jest": "^24.1.0",
"lint-staged": "^8.1.5",
"npm-run-all": "^4.0.0",
"npmpub": "^4.1.0",
"pify": "^4.0.1",
"prettier": "^1.5.2",
"remark-cli": "^6.0.1",
"remark-preset-lint-itgalaxy": "^14.0.0",
"tempy": "^0.2.0",
"webpack": "^4.29.6"
},
"peerDependencies": {
"webpack": "^4.0.0"
},
"scripts": {
"lint:prettier": "prettier --list-different 'test/**/*.{js,md,yml}' '*.{js,md,yml}'",
"lint:js": "eslint . --cache --report-unused-disable-directives --ignore-path .gitignore --ext 'js,.mjs,.md'",
"lint:md": "remark . -i .gitignore -f -q",
"lint": "npm-run-all -l -p lint:**",
"prettify": "npm run lint:prettier -- --write",
"fix:js": "npm run lint:js -- --fix",
"fix": "npm-run-all -l prettify -p 'fix:**'",
"pretest": "npm run lint",
"test:only": "jest --testPathIgnorePatterns=fixtures",
"test": "npm run test:only",
"release": "npmpub"
}
}