-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.42 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
{
"name": "node_pushserver",
"version": "3.2.1",
"description": "WebSub-compatible push server for Apple, Google and Microsoft services.",
"dependencies": {
"apn": "^2.2.0",
"axios": "^0.21.0",
"basic-auth": "^2.0.1",
"body-parser": "^1.19.0",
"bootstrap": "^4.4.1",
"bull": "^3.12.1",
"bull-board": "^0.6.0",
"debug": "^4.1.1",
"express": "^4.17.1",
"firebase-admin": "^8.9.0",
"he": "^1.2.0",
"lodash": "^4.17.15",
"mongo-uri": "^0.1.2",
"mongoose": "^5.8.7",
"node-gcm": "^1.0.2",
"prom-client": "^13.1.0",
"pug": "^3.0.1",
"querystring": "^0.2.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.8",
"sanitize-html": "^2.3.2",
"wns": "^0.5.4"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"coveralls": "^3.0.9",
"istanbul": "^0.4.3",
"mocha": "^7.0.0",
"nock": "^11.7.2",
"nodemon": "^2.0.2",
"standard": "^14.3.1"
},
"scripts": {
"bash": "/bin/sh",
"coverage": "NODE_ENV=coverage istanbul cover ./node_modules/mocha/bin/_mocha",
"lint": "standard",
"develop": "nodemon --watch bin --watch lib",
"start": "./bin/pushserver",
"test": "NODE_ENV=test mocha",
"worker": "./bin/worker"
},
"repository": {
"type": "git",
"url": "https://github.com/xfrocks/node_pubhubsubbub_pushserver.git"
},
"license": "MIT",
"standard": {
"env": "mocha"
}
}