-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.59 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "email-templates-effe",
"version": "1.1.0",
"description":
"A replacement engine for the node module email-templates and should support Foundation for Emails.",
"author": {
"name": "Nico Swiatecki",
"url": "https://swiatecki.io"
},
"repository": "https://github.com/snics/email-templates-effe.git",
"files": ["lib"],
"main": "lib/index.js",
"keywords": [
"email-template",
"foundation-for-emails",
"engine",
"email",
"alternative"
],
"scripts": {
"pretest": "eslint .",
"precommit": "lint-staged",
"prettier": "prettier --write lib/**/*.js",
"test:lint": "eslint .",
"test:jest": "jest -i --reporters --config ./jest.config.js",
"test:watch": "jest --watch --config ./jest.config.js",
"test": "npm run test:lint && npm run test:jest"
},
"lint-staged": {
"*.js": ["eslint --fix", "git add"],
"*.json": ["prettier --write", "git add"]
},
"dependencies": {
"bluebird": "^3.5.1",
"cheerio": "^1.0.0-rc.2",
"front-matter": "^2.3.0",
"glob": "^7.1.2",
"handlebars": "^4.0.11",
"inky": "^1.3.7",
"lodash": "^4.17.10",
"strip-bom": "^3.0.0"
},
"devDependencies": {
"coveralls": "^3.0.1",
"email-templates": "^4.0.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-xo": "^0.22.2",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"jest": "^23.0.0",
"lint-staged": "^7.1.2",
"nsp": "^3.2.1",
"prettier": "^1.12.1"
},
"engines": {
"node": ">= 6.0.0"
},
"license": "MIT"
}