-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.82 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
{
"name": "@kalisio/feathers-webpush",
"description": "Manage web push notifications",
"version": "1.0.1",
"homepage": "https://github.com/kalisio/feathers-webpush",
"main": "lib/index.js",
"type": "module",
"keywords": [
"feathers",
"feathers-webpush"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/kalisio/feathers-webpush.git"
},
"author": {
"name": "Kalisio contributors",
"url": "https://github.com/kalisio"
},
"contributors": [],
"bugs": {
"url": "https://github.com/kalisio/feathers-webpush/issues"
},
"engines": {
"node": ">= 16.0.0"
},
"scripts": {
"publish": "git push origin --tags && git push origin",
"release:patch": "npm version patch && npm publish --access public",
"release:minor": "npm version minor && npm publish --access public",
"release:major": "npm version major && npm publish --access public",
"lint": "standard lib/**/*.js test/**/*.js --fix",
"mocha": "cross-env NODE_CONFIG_DIR=./test/config/ mocha --exit --timeout 30000",
"coverage": "c8 npm run mocha",
"test": "npm run lint && npm run coverage"
},
"standard": {
"parserOptions": {
"sourceType": "module"
},
"env": [
"mocha"
],
"globals": [
"expect"
]
},
"directories": {
"lib": "lib"
},
"dependencies": {
"@feathersjs/errors": "^5.0.8",
"debug": "^4.3.4",
"lodash": "^4.17.21",
"web-push": "^3.6.1"
},
"devDependencies": {
"@feathersjs/feathers": "^5.0.8",
"@feathersjs/express": "^5.0.8",
"@feathersjs/memory": "^5.0.8",
"c8": "^7.11.0",
"chai": "^4.3.6",
"chai-lint": "^0.1.1",
"cross-env": "^7.0.3",
"mocha": "^9.2.2",
"node-fetch": "^3.2.10",
"sharp": "^0.32.0",
"socket.io-client": "^4.5.3",
"standard": "^17.0.0"
}
}