Skip to content

Commit a68c0e9

Browse files
committed
chore: Add contrib standard release tooling
1 parent 70370dc commit a68c0e9

File tree

1 file changed

+19
-13
lines changed

1 file changed

+19
-13
lines changed

package.json

+19-13
Original file line numberDiff line numberDiff line change
@@ -2,35 +2,41 @@
22
"name": "html-loader",
33
"version": "0.4.5",
44
"author": "Tobias Koppers @sokra",
5+
"license": "MIT",
56
"description": "html loader module for webpack",
7+
"main": "index.js",
8+
"files": [
9+
"lib"
10+
],
11+
"scripts": {
12+
"pretest": "npm run lint && npm run beautify-lint",
13+
"test": "mocha --harmony --full-trace --check-leaks",
14+
"travis": "npm run cover -- --report lcovonly",
15+
"lint": "eslint lib bin hot",
16+
"beautify-lint": "beautify-lint lib/**/*.js hot/**/*.js bin/**/*.js benchmark/*.js test/*.js",
17+
"beautify": "beautify-rewrite lib/**/*.js hot/**/*.js bin/**/*.js benchmark/*.js test/*.js",
18+
"postcover": "npm run lint && npm run beautify-lint",
19+
"cover": "istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha",
20+
"release": "standard-version"
21+
},
622
"dependencies": {
723
"es6-templates": "^0.2.2",
824
"fastparse": "^1.1.1",
925
"html-minifier": "^3.0.1",
1026
"loader-utils": "^1.0.2",
1127
"object-assign": "^4.1.0"
1228
},
13-
"license": "MIT",
1429
"devDependencies": {
1530
"beautify-lint": "^1.0.4",
1631
"codecov.io": "^0.1.6",
1732
"eslint": "^3.1.1",
1833
"istanbul": "^0.4.4",
1934
"js-beautify": "^1.6.3",
2035
"mocha": "^2.5.3",
21-
"should": "^10.0.0"
22-
},
23-
"scripts": {
24-
"pretest": "npm run lint && npm run beautify-lint",
25-
"test": "mocha --harmony --full-trace --check-leaks",
26-
"travis": "npm run cover -- --report lcovonly",
27-
"lint": "eslint lib bin hot",
28-
"beautify-lint": "beautify-lint lib/**/*.js hot/**/*.js bin/**/*.js benchmark/*.js test/*.js",
29-
"beautify": "beautify-rewrite lib/**/*.js hot/**/*.js bin/**/*.js benchmark/*.js test/*.js",
30-
"postcover": "npm run lint && npm run beautify-lint",
31-
"cover": "istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha",
32-
"publish-patch": "npm run lint && npm run beautify-lint && mocha && npm version patch && git push && git push --tags && npm publish"
36+
"should": "^10.0.0",
37+
"standard-version": "^4.2.0"
3338
},
39+
"homepage": "http://github.com/webpack-contrib/html-loader",
3440
"repository": {
3541
"type": "git",
3642
"url": "[email protected]:webpack/html-loader.git"

0 commit comments

Comments
 (0)