|
2 | 2 | "name": "html-loader",
|
3 | 3 | "version": "0.4.5",
|
4 | 4 | "author": "Tobias Koppers @sokra",
|
| 5 | + "license": "MIT", |
5 | 6 | "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 | + }, |
6 | 22 | "dependencies": {
|
7 | 23 | "es6-templates": "^0.2.2",
|
8 | 24 | "fastparse": "^1.1.1",
|
9 | 25 | "html-minifier": "^3.0.1",
|
10 | 26 | "loader-utils": "^1.0.2",
|
11 | 27 | "object-assign": "^4.1.0"
|
12 | 28 | },
|
13 |
| - "license": "MIT", |
14 | 29 | "devDependencies": {
|
15 | 30 | "beautify-lint": "^1.0.4",
|
16 | 31 | "codecov.io": "^0.1.6",
|
17 | 32 | "eslint": "^3.1.1",
|
18 | 33 | "istanbul": "^0.4.4",
|
19 | 34 | "js-beautify": "^1.6.3",
|
20 | 35 | "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" |
33 | 38 | },
|
| 39 | + "homepage": "http://github.com/webpack-contrib/html-loader", |
34 | 40 | "repository": {
|
35 | 41 | "type": "git",
|
36 | 42 | "url": "[email protected]:webpack/html-loader.git"
|
|
0 commit comments