|
3 | 3 | "version": "0.5.5",
|
4 | 4 | "author": "Tobias Koppers @sokra",
|
5 | 5 | "description": "html loader module for webpack",
|
| 6 | + "license": "MIT", |
| 7 | + "engines": { |
| 8 | + "node": ">= 6.9.0 || >= 8.9.0" |
| 9 | + }, |
6 | 10 | "main": "dist/cjs.js",
|
7 | 11 | "files": [
|
8 | 12 | "dist"
|
9 | 13 | ],
|
| 14 | + "dependencies": { |
| 15 | + "htmlnano": "^0.1.6", |
| 16 | + "loader-utils": "^1.1.0", |
| 17 | + "posthtml": "^0.11.0", |
| 18 | + "schema-utils": "^0.4.2" |
| 19 | + }, |
| 20 | + "devDependencies": { |
| 21 | + "babel-cli": "^6.0.0", |
| 22 | + "babel-jest": "^21.0.0", |
| 23 | + "babel-plugin-transform-object-rest-spread": "^6.0.0", |
| 24 | + "babel-polyfill": "^6.0.0", |
| 25 | + "babel-preset-env": "^1.0.0", |
| 26 | + "cross-env": "^5.0.0", |
| 27 | + "del": "^3.0.0", |
| 28 | + "del-cli": "^1.0.0", |
| 29 | + "eslint": "^4.0.0", |
| 30 | + "eslint-config-webpack": "^1.0.0", |
| 31 | + "eslint-plugin-import": "^2.0.0", |
| 32 | + "file-loader": "^1.0.0", |
| 33 | + "jest": "^21.0.0", |
| 34 | + "jsdom": "^11.0.0", |
| 35 | + "lint-staged": "^6.0.0", |
| 36 | + "memory-fs": "^0.4.0", |
| 37 | + "nsp": "^3.0.0", |
| 38 | + "pre-commit": "^1.0.0", |
| 39 | + "standard-version": "^4.0.0", |
| 40 | + "webpack": "^3.0.0", |
| 41 | + "webpack-defaults": "^1.6.0" |
| 42 | + }, |
| 43 | + "peerDependencies": { |
| 44 | + "webpack": "^3.0.0 || ^4.0.0-alpha.0 || ^4.0.0" |
| 45 | + }, |
10 | 46 | "scripts": {
|
11 | 47 | "start": "npm run build -- -w",
|
12 |
| - "build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js'", |
| 48 | + "build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files", |
13 | 49 | "clean": "del-cli dist",
|
14 |
| - "clean:dist": "del-cli dist", |
15 | 50 | "lint": "eslint --cache src test",
|
16 | 51 | "lint-staged": "lint-staged",
|
17 | 52 | "prebuild": "npm run clean",
|
18 | 53 | "prepublish": "npm run build",
|
19 |
| - "release": "standard-version", |
20 | 54 | "security": "nsp check",
|
21 |
| - "serve:dev": "nodemon $2 --exec babel-node", |
22 | 55 | "test": "jest",
|
23 | 56 | "test:watch": "jest --watch",
|
24 | 57 | "test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
|
25 | 58 | "travis:coverage": "npm run test:coverage -- --runInBand",
|
26 | 59 | "travis:lint": "npm run lint && npm run security",
|
27 | 60 | "travis:test": "npm run test -- --runInBand",
|
| 61 | + "appveyor:test": "npm run test", |
28 | 62 | "webpack-defaults": "webpack-defaults",
|
29 |
| - "appveyor:test": "npm run test" |
30 |
| - }, |
31 |
| - "dependencies": { |
32 |
| - "es6-templates": "^0.2.3", |
33 |
| - "fastparse": "^1.1.1", |
34 |
| - "html-minifier": "^3.0.1", |
35 |
| - "loader-utils": "^1.0.2", |
36 |
| - "object-assign": "^4.1.0", |
37 |
| - "schema-utils": "^0.4.2" |
38 |
| - }, |
39 |
| - "devDependencies": { |
40 |
| - "babel-cli": "^6.26.0", |
41 |
| - "babel-jest": "^21.2.0", |
42 |
| - "babel-plugin-transform-object-rest-spread": "^6.26.0", |
43 |
| - "babel-polyfill": "^6.26.0", |
44 |
| - "babel-preset-env": "^1.6.1", |
45 |
| - "cross-env": "^5.1.1", |
46 |
| - "del-cli": "^1.1.0", |
47 |
| - "eslint": "^4.12.1", |
48 |
| - "eslint-config-webpack": "^1.2.5", |
49 |
| - "eslint-plugin-import": "^2.8.0", |
50 |
| - "jest": "^21.2.1", |
51 |
| - "lint-staged": "^6.0.0", |
52 |
| - "nsp": "^3.1.0", |
53 |
| - "pre-commit": "^1.2.2", |
54 |
| - "standard-version": "^4.2.0", |
55 |
| - "webpack": "^3.10.0", |
56 |
| - "webpack-defaults": "^1.6.0" |
57 |
| - }, |
58 |
| - "peerDependencies": { |
59 |
| - "webpack": "^3.0.0 || ^4.0.0-alpha.0 || ^4.0.0" |
60 |
| - }, |
61 |
| - "engines": { |
62 |
| - "node": ">= 6.9.0 || >= 8.9.0" |
63 |
| - }, |
64 |
| - "homepage": "http://github.com/webpack-contrib/html-loader", |
65 |
| - "repository": { |
66 |
| - "type": "git", |
67 |
| - "url": "git@github.com:webpack/html-loader.git" |
| 63 | + "release": "standard-version" |
68 | 64 | },
|
| 65 | + "repository": "https://github.com/webpack-contrib/html-loader.git", |
| 66 | + "bugs": "https://github.com/webpack-contrib/html-loader/issues", |
| 67 | + "homepage": "https://webpack.js.org/loaders/html-loader", |
69 | 68 | "pre-commit": "lint-staged",
|
70 | 69 | "lint-staged": {
|
71 | 70 | "*.js": [
|
|
0 commit comments