-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
49 lines (49 loc) · 985 Bytes
/
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": "gmailpush",
"version": "1.0.4",
"description": "Gmail API push notification handler",
"keywords": [
"gmail",
"api",
"push",
"notification"
],
"homepage": "https://github.com/byeokim/gmailpush",
"repository": {
"type": "git",
"url": "https://github.com/byeokim/gmailpush.git"
},
"main": "index.js",
"bugs": "https://github.com/byeokim/gmailpush/issues",
"author": "Byeonggi Kim",
"license": "MIT",
"dependencies": {
"googleapis": "^61.0.0"
},
"devDependencies": {
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"husky": "^3.1.0",
"lint-staged": "^9.4.3",
"prettier": "^1.19.1"
},
"scripts": {
"prettier": "prettier \"**/*.js\" --check",
"lint": "eslint ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add",
"eslint"
]
},
"engines": {
"node": ">=10"
}
}