-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.27 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
{
"name": "push-notifications-server",
"private": true,
"version": "2.0.0",
"description": "Push notifications server",
"main": "index.js",
"scripts": {
"start": "node .",
"covertest": "rm -rf coverage && ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha test/{**,**/*}/*.test.js",
"test": "npm run-script covertest",
"posttest": "./node_modules/.bin/istanbul check-coverage --statements 100 --functions 100 --branches 100 --lines 100"
},
"author": "Giulia Alfonsi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/electricg/push-notifications-server.git"
},
"dependencies": {
"bluebird": "^3.4.1",
"hapi": "^13.5.0",
"joi": "^9.0.4",
"mongoose": "^4.5.4",
"nconf": "^0.8.4",
"web-push": "^3.3.5"
},
"homepage": "https://github.com/electricg/push-notifications-server#readme",
"devDependencies": {
"babel-eslint": "^8.2.6",
"eslint": "^5.1.0",
"eslint-plugin-prettier": "^2.6.2",
"istanbul": "^0.4.4",
"lodash": "^4.13.1",
"mocha": "^2.5.3",
"mockgoose": "^6.0.3",
"nock": "^8.0.0",
"prettier": "^1.13.7",
"prettier-eslint": "^8.8.2",
"request": "^2.73.0",
"rewire": "^2.5.2",
"should": "^9.0.2",
"sinon": "^1.17.4"
}
}