-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1014 Bytes
/
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
{
"name": "browser-notification-for-web-app",
"version": "1.0.5",
"description": "A lite package to display desktop notification for web application.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"prepare" : "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/William-Zhen-YAN/browser-notification.git"
},
"bugs": {
"url": "https://github.com/William-Zhen-YAN/browser-notification/issues"
},
"homepage": "https://github.com/William-Zhen-YAN/browser-notification#readme",
"keywords": [
"notification",
"desktop",
"browser"
],
"author": "Zhen YAN",
"license": "MIT",
"dependencies": {
"@types/lodash": "^4.14.159",
"lodash": "^4.17.19"
},
"devDependencies": {
"@types/jest": "^26.0.9",
"jest": "^26.2.2",
"ts-jest": "^26.1.4",
"ts-loader": "^8.0.2",
"typescript": "^3.9.7"
},
"files": [
"lib/**/*"
]
}