-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.62 KB
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
{
"name": "pod-notify-js",
"version": "0.0.14",
"description": "A cross-browser solution for the Javascript Notifications API using Fanap's POD Async service (DIRANA)",
"main": "bin/pod-notify.min.js",
"scripts": {
"clean": "rimraf bin/",
"build": "webpack --mode production",
"prepare": "npm run build",
"precommit": "npm run check-types && lint-staged && npm run build && git add ./bin",
"check-types": "tsc"
},
"files": [
"bin",
"*.md",
"*.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/sijav/pod-notify-js"
},
"author": "Sina Javaheri (sijav) <sinajavaheri@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sijav/pod-notify-js/issues"
},
"homepage": "https://github.com/sijav/pod-notify-js",
"dependencies": {
"axios": "~0.18.0",
"device-uuid": "~1.0.4",
"podasync": "~2.5.14",
"ua-parser-js": "~0.7.19"
},
"devDependencies": {
"@babel/core": "~7.2.2",
"@babel/plugin-proposal-class-properties": "~7.3.0",
"@babel/plugin-proposal-object-rest-spread": "~7.3.1",
"@babel/preset-env": "~7.3.1",
"@babel/preset-typescript": "~7.1.0",
"@types/ua-parser-js": "~0.7.32",
"babel-loader": "~8.0.5",
"file-loader": "~3.0.1",
"json-loader": "~0.5.7",
"lint-staged": "~8.1.0",
"rimraf": "~2.6.3",
"serviceworker-webpack-plugin": "~1.0.1",
"source-map-loader": "~0.2.4",
"tslib": "^1.9.3",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.4",
"webpack": "~4.29.0",
"webpack-cli": "~3.2.1",
"uglifyjs-webpack-plugin": "~2.1.1"
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"git add"
]
}
}