This repository has been archived by the owner on May 17, 2019. It is now read-only.
forked from web-push-libs/web-push
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.59 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
{
"name": "@smpx/web-push",
"version": "3.4.0",
"description": "Web Push library for Node.js",
"main": "src/index.js",
"bin": {
"web-push": "src/cli.js"
},
"types": "index.d.ts",
"scripts": {
"download-browser": "node --harmony ./test/helpers/download-test-browsers.js",
"lint": "node ./node_modules/eslint/bin/eslint --ignore-path .gitignore '.'",
"pretest": "npm run lint && npm run download-browser",
"test": "node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- --ui tdd test/test*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartprix/web-push.git"
},
"keywords": [
"web push",
"push",
"notifications",
"push notifications"
],
"author": "Marco Castelluccio",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/smartprix/web-push/issues"
},
"homepage": "https://github.com/smartprix/web-push#readme",
"dependencies": {
"@types/web-push": "^3.3.0",
"asn1.js": "^5.0.0",
"http_ece": "1.1.0",
"https-proxy-agent": "^2.2.1",
"jws": "^3.1.3",
"minimist": "^1.2.0",
"urlsafe-base64": "^1.0.0"
},
"devDependencies": {
"chalk": "2.4.2",
"chromedriver": "2.46.0",
"del": "4.1.0",
"eslint": "5.16.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "2.17.1",
"geckodriver": "1.16.2",
"istanbul": "0.4.5",
"mkdirp": "0.5.1",
"mocha": "5.2.0",
"portfinder": "1.0.20",
"selenium-assistant": "5.4.0",
"semver": "6.0.0",
"sinon": "7.3.1",
"which": "1.3.1"
},
"engines": {
"node": ">= 6"
}
}