-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.58 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
{
"name": "push-notifications",
"version": "1.0.0",
"description": "A browser push notification service",
"main": "src/server.ts",
"scripts": {
"dev": "ts-node -r dotenv/config src/server.ts",
"start": "node -r dotenv/config build/server.js",
"build": "npx tsc src/server.ts --outDir build",
"types": "npx tsc src/server.ts --noEmit",
"test": "mocha -r ts-node/register -r source-map-support/register src/**/*.spec.ts",
"coverage": "nyc npm run test"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"build",
"src/__mocks__",
"src/__stubs__",
"**/*.spec.ts"
],
"reporter": [
"text",
"html"
],
"sourceMap": true,
"instrument": true,
"all": true
},
"keywords": [],
"author": "Vance Longwill <vancelongwill@gmail.com>",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"lowdb": "^1.0.0",
"ts-node": "^8.2.0",
"typescript": "^3.5.1",
"web-push": "^3.3.5"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/cors": "^2.8.5",
"@types/express": "^4.16.1",
"@types/lowdb": "^1.0.9",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.3",
"@types/sinon": "^7.0.12",
"@types/web-push": "^3.3.0",
"chai": "^4.2.0",
"istanbul": "^0.4.5",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"sinon": "^7.3.2",
"source-map-support": "^0.5.12"
}
}