-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
115 lines (115 loc) · 3 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "web-push-notifications",
"version": "3.26.0",
"description": "Pushwoosh web push notifications",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepare": "cross-env NODE_ENV=production webpack --config webpack.lib.config.js",
"build": "webpack",
"build:prod": "cross-env NODE_ENV=production webpack",
"zip": "node scripts/zip.js",
"release": "npm run build:prod && npm run zip",
"start": "cross-env NODE_ENV=development webpack-dev-server --history-api-fallback",
"test": "mocha",
"test:watch": "mocha --watch",
"test:coverage": "TS_NODE_CACHE=0 nyc -a mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pushwoosh/web-push-notifications.git"
},
"files": [
"lib"
],
"keywords": [
"pushwoosh",
"web",
"push",
"notifications"
],
"author": "Pushwoosh",
"license": "MIT",
"bugs": {
"url": "https://github.com/Pushwoosh/web-push-notifications/issues"
},
"homepage": "https://github.com/Pushwoosh/web-push-notifications#readme",
"devDependencies": {
"@babel/core": "7.7.7",
"@babel/preset-env": "7.7.7",
"@types/chai": "4.1.6",
"@types/jsdom": "12.2.0",
"@types/jszip": "3.1.6",
"@types/mocha": "5.2.5",
"@types/node": "10.14.19",
"@types/sinon": "5.0.5",
"@types/uuid": "3.4.5",
"@types/whatwg-streams": "0.0.5",
"archiver": "2.1.0",
"autoprefixer": "7.1.6",
"awesome-typescript-loader": "5.2.1",
"babel-loader": "8.0.6",
"chai": "4.2.0",
"clean-webpack-plugin": "0.1.17",
"copy-webpack-plugin": "5.0.4",
"cross-env": "5.1.1",
"css-loader": "0.28.7",
"detect-browser": "4.8.0",
"fake-indexeddb": "2.0.4",
"generate-json-webpack-plugin": "0.2.2",
"html-webpack-plugin": "3.2.0",
"http-server": "0.11.1",
"jsdom": "15.1.1",
"mocha": "5.2.0",
"nyc": "13.1.0",
"postcss-loader": "2.0.8",
"raw-loader": "3.1.0",
"script-ext-html-webpack-plugin": "2.0.1",
"sinon": "7.1.1",
"source-map-support": "0.5.9",
"to-string-loader": "1.1.5",
"ts-node": "7.0.1",
"tslint": "5.10.0",
"tslint-loader": "3.6.0",
"typescript": "3.9.10",
"uglifyjs-webpack-plugin": "1.2.7",
"uuid": "3.3.3",
"webpack": "4.8.3",
"webpack-cli": "2.1.3",
"webpack-dev-server": "3.1.10"
},
"dependencies": {
"@pushwoosh/logger": "1.0.4",
"@pushwoosh/web-push-inbox-widget": "1.0.5",
"@pushwoosh/web-push-subscribe-popup": "1.0.7",
"promise-polyfill": "8.1.3",
"jszip": "3.2.2",
"url-resolve-browser": "1.1.0",
"whatwg-fetch": "3.0.0"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"**/coverage/**",
"**/test/**",
"**/config/**",
"**/assets/**",
"testRegister.js",
"webpack.config.js",
"webpack.lib.config.js",
"dist/**",
"lib/",
"develop/",
"scripts/",
"ci/",
"node_modules/"
],
"reporter": [
"html"
],
"all": true
}
}