forked from browserslist/browserslist-useragent-regexp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.12 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "browserslist-useragent-regexp",
"version": "3.0.2",
"description": "A utility to compile browserslist query to a RegExp to test browser useragent.",
"author": "dangreen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/browserslist/browserslist-useragent-regexp"
},
"bugs": {
"url": "https://github.com/browserslist/browserslist-useragent-regexp/issues"
},
"bin": {
"browserslist-useragent-regexp": "lib/cli.js"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"lint": "trigen-scripts lint",
"jest": "trigen-scripts jest",
"checkSize": "trigen-scripts checkSize",
"test": "trigen-scripts test",
"build:demo": "node examples/buildDemo > ./docs/demo.html && cp -R examples/demojs/ docs/demojs/",
"build:docs": "trigen-scripts build:docs",
"start": "trigen-scripts start",
"build": "trigen-scripts build",
"cleanPublish": "trigen-scripts test && del 'lib/**/*.spec.*' && clean-publish"
},
"keywords": [
"browserslist",
"regexp"
],
"dependencies": {
"@types/node": "^16.9.6",
"argue-cli": "^1.2.0",
"browserslist": "^4.16.3",
"chalk": "^4.0.0",
"easy-table": "^1.1.1",
"useragent": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@rollup/plugin-eslint": "^8.0.1",
"@size-limit/preset-small-lib": "^5.0.4",
"@trigen/eslint-config": "^7.3.4",
"@trigen/scripts": "^7.3.1",
"@trigen/scripts-plugin-babel": "^7.3.1",
"@trigen/scripts-plugin-eslint": "^7.3.4",
"@trigen/scripts-plugin-jest": "^7.3.1",
"@trigen/scripts-plugin-rollup": "^7.1.0",
"@trigen/scripts-plugin-size-limit": "^7.3.1",
"@trigen/scripts-plugin-typescript": "^7.3.2",
"@trigen/scripts-preset-lib": "^7.3.4",
"browserslist-useragent": "^3.0.0",
"del-cli": "^4.0.1",
"eslint": "7.18.0",
"rollup": "^2.38.4",
"rollup-plugin-add-shebang": "^0.3.0",
"rollup-plugin-typescript2": "^0.30.0",
"size-limit": "^5.0.4",
"typescript": "^4.1.3",
"user-agents": "^1.0.213"
},
"files": [
"lib"
]
}