forked from browserslist/browserslist-useragent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 974 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
{
"name": "browserslist-useragent",
"version": "3.0.2",
"description": "A utility to match a browselist query to browser user agents",
"main": "lib/index.js",
"repository": "https://github.com/pastelsky/browserslist-useragent",
"author": "Shubham Kanodia <[email protected]>",
"license": "MIT",
"files": [
"./lib/index.js"
],
"engines": {
"node": ">= 6.x.x"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"prepublish": "yarn run build",
"build": "mkdir -p lib && babel index.js --out-file lib/index.js"
},
"dependencies": {
"browserslist": "^4.6.6",
"semver": "^6.3.0",
"useragent": "^2.3.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"jest": "^23.6.0",
"useragent-generator": "^1.1.0"
},
"jest": {
"projects": [
"<rootDir>/external-browserslists/package-json"
]
}
}