This repository was archived by the owner on Nov 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.4 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.4 KB
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
{
"name": "html-srcsets-loader",
"version": "0.5.1",
"author": "Tobias Koppers @sokra",
"license": "MIT",
"description": "variant of the html loader module for webpack with a patch to load srcset attribute(s)",
"main": "index.js",
"files": [
"lib"
],
"scripts": {
"pretest": "npm run lint && npm run beautify-lint",
"test": "mocha --harmony --full-trace --check-leaks",
"travis": "npm run cover -- --report lcovonly",
"lint": "eslint lib bin hot",
"beautify-lint": "beautify-lint lib/**/*.js hot/**/*.js bin/**/*.js benchmark/*.js test/*.js",
"beautify": "beautify-rewrite lib/**/*.js hot/**/*.js bin/**/*.js benchmark/*.js test/*.js",
"postcover": "npm run lint && npm run beautify-lint",
"cover": "istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha",
"release": "standard-version"
},
"dependencies": {
"es6-templates": "^0.2.2",
"fastparse": "^1.1.1",
"html-minifier": "^3.0.1",
"loader-utils": "^1.0.2",
"object-assign": "^4.1.0"
},
"devDependencies": {
"beautify-lint": "^1.0.4",
"codecov.io": "^0.1.6",
"eslint": "^3.1.1",
"istanbul": "^0.4.4",
"js-beautify": "^1.6.3",
"mocha": "^2.5.3",
"should": "^10.0.0",
"standard-version": "^4.2.0"
},
"homepage": "http://github.com/ushu/html-srcset-loader",
"repository": {
"type": "git",
"url": "git@github.com:ushu/html-srcset-loader.git"
}
}