forked from jrit/web-resource-inliner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.16 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
{
"author": {
"name": "Jarrett Widman",
"email": "jarrett.widman@vokal.io",
"url": "https://github.com/jrit"
},
"name": "web-resource-inliner",
"description": "Inlines img, script and link tags into the same file.",
"version": "3.0.0",
"keywords": [
"inline",
"js",
"css",
"scripts",
"stylesheets",
"html",
"datauri"
],
"license": "MIT",
"main": "src/inline.js",
"repository": {
"type": "git",
"url": "https://github.com/jrit/web-resource-inliner.git"
},
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"faux-jax": "^5.0.0",
"istanbul": "^0.3.5",
"mime-types": "^2.1.7",
"mocha": "^2.0.1"
},
"dependencies": {
"async": "^0.9.0",
"chalk": "^1.1.3",
"clean-css": "1.1.7",
"datauri": "~0.2.0",
"htmlparser2": "^3.9.0",
"lodash.constant": "^3.0.0",
"lodash.unescape": "^4.0.0",
"request": "^2.72.0",
"xtend": "^4.0.0"
},
"scripts": {
"test": "mocha test",
"coverage": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --ui bdd -R spec",
"lint": "eslint . --fix || true",
"format": "jscs . -x"
}
}