forked from keystonejs/keystone-email
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.26 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
{
"name": "keystone-email",
"version": "1.0.5",
"description": "Email helper for KeystoneJS Apps",
"main": "index.js",
"dependencies": {
"debug": "^2.2.0",
"html-to-text": "^2.1.3",
"juice": "^3.0.0",
"lodash": "^4.15.0",
"mailgun-js": "^0.7.12",
"mandrill-api": "^1.0.45",
"object-assign": "^4.1.0"
},
"devDependencies": {
"codeclimate-test-reporter": "^0.3.3",
"eslint": "^2.11.0",
"eslint-config-keystone": "^2.4.0",
"eslint-plugin-react": "^5.2.2",
"istanbul": "^0.4.5",
"mocha": "^3.0.2",
"nodemailer": "^2.6.0",
"pug": "^2.0.0-beta6"
},
"scripts": {
"test": "npm run lint && npm run test-unit",
"test-unit": "mocha tests",
"coverage": "istanbul cover _mocha tests",
"codeclimate": "codeclimate-test-reporter < coverage/lcov.info",
"lint": "eslint . --ignore-path .gitignore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keystonejs/keystone-email.git"
},
"keywords": [
"email",
"keystone",
"keystonejs",
"mandrill",
"mailgun"
],
"author": "Jed Watson",
"license": "MIT",
"bugs": {
"url": "https://github.com/keystonejs/keystone-email/issues"
},
"homepage": "https://github.com/keystonejs/keystone-email#readme"
}