forked from MatthieuLemoine/push-receiver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.85 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
61
62
63
64
65
66
67
68
{
"name": "push-receiver",
"version": "2.1.1",
"description":
"A module to subscribe to GCM/FCM and receive notifications within a node process.",
"main": "src/index.js",
"scripts": {
"start": "node scripts/listen",
"register": "node scripts/register",
"send": "node scripts/send",
"pretty":
"prettier-eslint --single-quote --trailing-comma es5 --write \"**/*.js\" \"**/*.json\"",
"pretty:check":
"prettier-eslint --single-quote --trailing-comma es5 --list-different --log-level silent \"**/*.js\" \"**/*.json\"",
"lint": "eslint 'src/**/*.js'",
"lint:fix": "eslint 'src/**/*.js' --fix",
"test": "jest",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier-eslint --single-quote --trailing-comma es5 --write"
],
"*.json": ["prettier-eslint --single-quote --trailing-comma es5 --write"]
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/MatthieuLemoine/push-receiver.git"
},
"keywords": [
"push",
"service",
"fcm",
"gcm",
"notifications",
"node",
"electron",
"receiver"
],
"author": "MatthieuLemoine",
"license": "MIT",
"bugs": {
"url": "https://github.com/MatthieuLemoine/push-receiver/issues"
},
"homepage": "https://github.com/MatthieuLemoine/push-receiver#readme",
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.4.1",
"eslint-plugin-jest": "^20.0.3",
"http-proxy": "^1.16.2",
"husky": "^0.14.3",
"jest": "^22.2.2",
"lint-staged": "^6.1.0",
"prettier": "^1.6.1",
"prettier-eslint": "^7.0.0",
"prettier-eslint-cli": "^4.3.0",
"yargs": "^10.0.3"
},
"dependencies": {
"http_ece": "^1.0.5",
"long": "^3.2.0",
"protobufjs": "^6.8.0",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"uuid": "^3.1.0"
}
}