-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.48 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
{
"name": "web-push-api",
"bugs": "https://github.com/BR0kEN-/web-push-api/issues",
"main": "index.dist.js",
"types": "index.d.ts",
"license": "MIT",
"version": "0.0.4",
"homepage": "https://github.com/BR0kEN-/web-push-api",
"repository": "https://github.com/BR0kEN-/web-push-api.git",
"description": "Utility to subscribe/unsubscribe to Push API notifications and syncing with backend.",
"keywords": [
"push api",
"notifications",
"web push"
],
"author": {
"name": "Sergii Bondarenko (BR0kEN)",
"email": "sb@firstvector.org"
},
"scripts": {
"lint": "eslint index.js --color",
"prebuild": "npm run lint",
"build": "babel index.js --out-file index.dist.js"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.8.4",
"@babel/preset-env": "7.8.4",
"babel-eslint": "10.0.3",
"eslint": "6.8.0",
"fast-async": "^6.3.8",
"husky": "4.2.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run build"
}
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"exclude": ["transform-async-to-generator", "transform-regenerator"]
}
]
],
"plugins": [
[
"module:fast-async",
{
"spec": true
}
]
]
},
"eslintConfig": {
"root": true,
"parser": "babel-eslint",
"extends": "eslint:recommended",
"env": {
"browser": true
},
"globals": {
"Uint8Array": "readonly"
}
}
}