-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.08 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.08 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
{
"name": "push-notification",
"version": "0.2.4",
"description": "push notification for apple push notification (APN) and google cloud messaging (GCM)",
"author": {
"name": "Dongwon Lim",
"email": "idw111@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/idw111/push-notification.git"
},
"files": ["lib"],
"main": "lib/index.js",
"keywords": ["push-notification", "push notification", "push", "promise", "notification", "apn", "gcm", "apple", "google", "nodejs"],
"devDependencies": {
"apn": "^2.1.5",
"coveralls": "^2.13.1",
"dotenv": "^4.0.0",
"eslint": "^4.5.0",
"eslint-config-xo-space": "^0.16.0",
"expect.js": "^0.3.1",
"jest": "^20.0.4",
"node-gcm": "^0.14.6",
"nsp": "^2.7.0"
},
"scripts": {
"prepare": "nsp check",
"pretest": "eslint . --fix",
"test": "jest"
},
"eslintConfig": {
"extends": "xo-space",
"rules": {
"new-cap": "off"
},
"env": {
"jest": true,
"node": true
}
},
"jest": {
"testEnvironment": "node"
},
"license": "MIT",
"peerDependencies": {
"apn": "^2.1.5",
"node-gcm": "^0.14.6"
}
}