-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 992 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
42
{
"name": "is-browser-supported",
"version": "1.1.1",
"description": "Check if user agent string matches with browser criterias like in Autoprefixer",
"license": "MIT",
"repository": "fastmonkeys/is-browser-supported",
"author": {
"name": "Janne Vanhala",
"email": "[email protected]"
},
"engines": {
"node": ">=4"
},
"browser": "./dist/is-browser-supported.js",
"scripts": {
"build": "webpack",
"prepublish": "npm run build",
"test": "eslint . && mocha test.js"
},
"keywords": [
"agent",
"browser",
"browser version",
"user-agent",
"user agent",
"useragent",
"version"
],
"dependencies": {
"browserslist": "^2.3.3",
"ua-parser-js": "^0.7.14"
},
"devDependencies": {
"clean-webpack-plugin": "^0.1.13",
"eslint": "^3.8.1",
"eslint-config-airbnb-base": "^9.0.0",
"eslint-plugin-import": "^2.0.1",
"json-loader": "^0.5.4",
"mocha": "^3.1.2",
"webpack": "^1.13.2"
}
}