-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.17 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
{
"name": "mailgun-mate",
"version": "0.1.6",
"description": "CLI to work with mailgun",
"main": "src/index.js",
"scripts": {
"test": "lab -a code",
"test:debug": "node --inspect-brk ./node_modules/.bin/lab -a code --timeout 0",
"lint": "eslint .",
"deps": "npm-check",
"update:deps": "npm-check -u",
"pretest": "npm run lint",
"debug": "node --inspect-brk ./bin/mailgun-mate",
"start": "node ./bin/mailgun-mate"
},
"author": {
"name": "BinaryMist",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/binarymist/mailgun-mate",
"bin": {
"mailgun-mate": "./bin/mailgun-mate"
},
"dependencies": {
"chalk": "^2.4.1",
"convict": "^4.3.0",
"figlet": "^1.2.0",
"inquirer": "^6.0.0",
"mailgun-js": "^0.18.0",
"moment": "^2.22.2",
"purpleteam-logger": "^0.1.5",
"sywac": "^1.2.1"
},
"devDependencies": {
"code": "^5.2.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"lab": "^15.5.0",
"npm-check": "^5.7.1",
"pre-commit": "^1.2.2",
"rewire": "^4.0.1",
"sinon": "^6.1.3"
}
}