forked from remy/inliner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.24 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
{
"name": "inliner",
"description": "Utility to inline images, CSS and JavaScript for a web page - useful for mobile sites",
"homepage": "http://github.com/remy/inliner",
"main": "lib/index.js",
"scripts": {
"test": "jscs -v cli/*.js lib/*.js && node test/*.test.js --cov",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"keywords": [
"mobile",
"inline",
"production",
"build",
"minify"
],
"author": "Remy Sharp",
"dependencies": {
"charset": "^1.0.0",
"cheerio": "^0.19.0",
"debug": "^2.2.0",
"es6-promise": "^2.3.0",
"iconv-lite": "^0.4.11",
"jschardet": "^1.3.0",
"lodash.assign": "^3.2.0",
"lodash.defaults": "^3.1.2",
"lodash.foreach": "^3.0.3",
"mime": "^1.3.4",
"minimist": "^1.1.3",
"request": "^2.60.0",
"svgo": "^0.5.6",
"then-fs": "^2.0.0",
"uglify-js": "^2.4.24",
"update-notifier": "^0.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/remy/inliner.git"
},
"license": "MIT",
"bin": {
"inliner": "cli/index.js"
},
"devDependencies": {
"jscs": "^2.0.0",
"st": "^0.5.5",
"tap-spec": "^4.0.2",
"tape": "^4.0.1",
"semantic-release": "^4.0.0"
}
}