-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.69 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
{
"name": "link-file-plugin",
"version": "0.0.19",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"test": "yarn run build && webpack --config ./example/webpack.config.js",
"release": "yarn run build && git add . && git commit && npm version patch && npm publish"
},
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"devDependencies": {
"2string-loader": "^1.0.0",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@types/cheerio": "^0.22.22",
"@types/loader-utils": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"@wessberg/rollup-plugin-ts": "^1.3.7",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.0",
"eslint": "^7.12.1",
"execa": "^4.0.3",
"extract-loader": "^5.1.0",
"file-loader": "^6.1.1",
"husky": "^4.3.0",
"lint-staged": "^10.5.0",
"npm-check-updates": "^9.2.3",
"prettier": "^2.1.2",
"prettier-plugin-jsdoc": "^0.2.0",
"rollup": "^2.32.1",
"typescript": "^4.0.5",
"webpack-cli": "^4.1.0"
},
"peerDependencies": {
"file-loader": "^6.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint",
"eslint --fix",
"prettier --write",
"git add"
]
},
"eslintIgnore": [
"**/dist/*"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"chalk": "^4.1.0",
"cheerio": "^1.0.0-rc.3",
"html-webpack-plugin": "^5.0.0-alpha.7",
"loader-utils": "^2.0.0",
"webpack": "^5.2.0"
}
}