forked from dvhb/badbrowser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 856 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 856 Bytes
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
{
"name": "@dvhb/badbrowser",
"version": "1.2.8",
"description": "The library checks user client and shows a warning if the browser version does not meet minimal requirements",
"repository": {
"type": "git",
"url": "git@github.com:dvhb/badbrowser.git"
},
"license": "MIT",
"main": "dist/badbrowser.js",
"files": [
"dist"
],
"engines": {
"node": ">=6"
},
"devDependencies": {
"@dvhb/webpack": "1.4.2",
"gh-pages": "^1.0.0",
"jest": "^20.0.4"
},
"scripts": {
"dev": "dvhb-webpack server",
"build": "npm run build:prod",
"build:dev": "dvhb-webpack build --app-env=development",
"build:prod": "dvhb-webpack build --app-env=production",
"deploy": "gh-pages -d dist",
"test": "jest --verbose",
"prepublish": "npm run build"
},
"dependencies": {
"bowser": "^1.9.3"
}
}