-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
60 lines (60 loc) · 1.35 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
{
"name": "puppeteer-salvator",
"version": "1.0.1",
"description": "The Saviour, When You Forget Birthdays",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/thealphadollar/salvator.git"
},
"keywords": [
"messenger",
"birthday"
],
"author": "github@thealphadollar",
"license": "MIT",
"bin": {
"puppeteer-salvator": "./cli.js"
},
"bugs": {
"url": "https://github.com/thealphadollar/salvator/issues"
},
"homepage": "https://github.com/thealphadollar/salvator#readme",
"dependencies": {
"chalk": "^2.4.1",
"colors": "^1.3.3",
"commander": "^2.19.0",
"dotenv": "^6.0.0",
"execa": "^1.0.0",
"inquirer": "^6.2.1",
"listr": "^0.14.3",
"log-symbols": "^2.2.0",
"nodemailer": "^4.6.7",
"ora": "^3.0.0",
"puppeteer": "^1.5.0"
},
"devDependencies": {
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.2.1",
"lint-staged": "^8.1.0"
}
}