forked from SimenB/add-asset-html-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.38 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "manipulate-assets-html-webpack-plugin",
"version": "0.1.2",
"description": "do something with assets on the way to the generated HTML file",
"files": [
"lib/",
"index.d.ts"
],
"main": "lib/index.js",
"scripts": {
"clean": "del-cli lib/ coverage/ example/build example/dist",
"compile": "babel src/ --out-dir lib/",
"cover": "jest --coverage",
"preexample": "npm run clean && npm run compile",
"example": "webpack --config example/webpack.config.dll.js && webpack --config example/webpack.config.js",
"lint": "eslint .",
"update-license": "licensor --width 72",
"compile-and-update-license": "npm run compile && npm run update-license",
"preversion": "npm run travis && npm run update-license",
"prepublish": "not-in-install && npm run compile-and-update-license || in-install",
"postpublish": "git push --follow-tags",
"pretest": "npm run lint",
"test": "jest",
"pretravis": "npm run lint && npm run clean",
"travis": "npm run cover"
},
"repository": "Algotec/manipulate-assets-html-webpack-plugin",
"keywords": [
"html-webpack-plugin",
"webpack"
],
"author": "Nadav Sinai <[email protected]>",
"license": "MIT",
"dependencies": {
"p-each-series": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-inline-imports-commonjs": "^1.2.0",
"babel-preset-env": "^1.6.0",
"classnames": "^2.2.5",
"del-cli": "^1.1.0",
"eslint": "^4.6.1",
"eslint-config-simenb-base": "^14.0.0",
"eslint_d": "^5.1.0",
"html-webpack-plugin": "^2.10.0",
"husky": "^0.14.3",
"in-publish": "^2.0.0",
"jest": "^23.4.2",
"licensor": "^4.0.0",
"lint-staged": "^6.0.0",
"prettier": "^1.8.2",
"webpack": "^3.5.6"
},
"peerDependencies": {
"html-webpack-plugin": "^2.10.0 || ^3.0.4"
},
"engines": {
"node": ">=4"
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{md,json}": [
"prettier --write",
"git add"
],
".eslintrc": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"overrides": [
{
"files": ".eslintrc",
"options": {
"parser": "json"
}
}
]
}
}