-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.6 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "dovetailer",
"version": "0.7.10",
"license": "Apache-2.0",
"description": "Convert Nunjucks and Sass to an optimized HTML email",
"author": "Max Lapides",
"keywords": [
"email",
"html",
"inline",
"css"
],
"repository": {
"type": "git",
"url": "[email protected]:maxlapides/dovetailer.git"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"index.js",
"common/*",
"lib/*"
],
"main": "index.js",
"dependencies": {
"autoprefixer": "^9.1.1",
"bluebird": "^3.3.4",
"cheerio": "^0.22.0",
"css-mqpacker": "^7.0.0",
"cssnano": "^4.0.5",
"del": "^3.0.0",
"detergent": "^3.5.0",
"email-remove-unused-css": "^3.2.0",
"fs-extra": "^7.0.0",
"he": "^1.1.0",
"html-minifier": "^3.5.19",
"image-size": "^0.6.3",
"juice": "^4.3.2",
"lodash": "^4.15.0",
"marked": "^0.5.0",
"memory-cache": "^0.2.0",
"node-sass": "^4.9.3",
"nunjucks": "^3.1.3",
"postcss": "^6.0.23",
"winston": "^3.0.0"
},
"devDependencies": {
"ava": "^0.25.0",
"eslint": "^5.3.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-ava": "^5.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^2.6.2",
"pre-commit": "^1.1.2",
"prettier": "^1.14.2",
"prettier-eslint": "^8.8.2"
},
"scripts": {
"eslint": "eslint index.js lib/*.js",
"test": "ava",
"prettier": "prettier --write '{**/*,*}.{js,scss,json,md}' '!(node_modules|build|cache)/**'",
"eslint-fix": "eslint '*.js' '!(node_modules|build|cache)/**/*.js' --fix"
},
"pre-commit": [
"eslint"
]
}