forked from Automattic/juice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.19 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
{
"name": "juice",
"version": "5.0.1",
"description": "Inlines css into html source",
"bin": "bin/juice",
"main": "index.js",
"browser": "client.js",
"scripts": {
"test": "mocha --reporter spec && npm run test-typescript",
"testcover": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec",
"test-typescript": "tsc ./test/typescript/juice-tests.ts && rm ./test/typescript/juice-tests.js",
"browserify": "browserify client.js -o tmp/bundle.js --standalone juice"
},
"license": "MIT",
"contributors": [
{
"name": "Guillermo Rauch"
},
{
"name": "Andrew Kelley"
},
{
"name": "Jarrett Widman"
}
],
"engines": {
"node": ">=4.2.0"
},
"types": "juice.d.ts",
"dependencies": {
"cheerio": "^0.22.0",
"commander": "^2.15.1",
"cross-spawn": "^6.0.5",
"deep-extend": "^0.6.0",
"mensch": "^0.3.3",
"slick": "^1.12.2",
"web-resource-inliner": "^4.2.1"
},
"devDependencies": {
"batch": "0.5.3",
"browserify": "^13.1.1",
"mocha": "^5.2.0",
"should": "^11.1.1",
"typescript": "^2.9.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Automattic/juice.git"
}
}