-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
106 lines (106 loc) · 3.33 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "browserslist-useragent-regexp",
"type": "module",
"version": "4.1.3",
"description": "A utility to compile browserslist query to a RegExp to test browser useragent.",
"author": "dangreen",
"license": "MIT",
"funding": [
"https://opencollective.com/browserslist-useragent-regexp",
"https://ko-fi.com/dangreen"
],
"repository": {
"type": "git",
"url": "https://github.com/browserslist/browserslist-useragent-regexp"
},
"bugs": {
"url": "https://github.com/browserslist/browserslist-useragent-regexp/issues"
},
"keywords": [
"browserslist",
"useragent",
"regexp"
],
"engines": {
"node": ">=14.0.0"
},
"bin": {
"browserslist-useragent-regexp": "./dist/cli.js",
"bluare": "./dist/cli.js"
},
"exports": "./src/index.ts",
"publishConfig": {
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"directory": "package"
},
"files": [
"dist"
],
"scripts": {
"clear:package": "del ./package",
"clear": "del ./package ./dist ./coverage",
"prepublishOnly": "run test build clear:package clean-publish",
"postpublish": "pnpm clear:package",
"emitDeclarations": "tsc --emitDeclarationOnly",
"build": "run -p [ rollup -c ] emitDeclarations",
"lint": "eslint './*{js,ts}' './src/**/*.{js,ts}' './examples/**/*.{js,ts}'",
"test:unit": "vitest run --coverage",
"test:unit:watch": "vitest watch",
"test:types": "tsc --noEmit",
"test:size": "size-limit",
"test": "run -p lint test:unit",
"build:demo": "node examples/buildDemo > ./docs/demo.html && cp -R examples/demojs/ docs/demojs/",
"build:docs": "typedoc ./src --out ./docs --excludeExternals && touch docs/.nojekyll",
"commit": "cz",
"bumpVersion": "standard-version",
"createGithubRelease": "simple-github-release",
"release": "run bumpVersion [ git push origin master --tags ] createGithubRelease",
"release:beta": "run [ bumpVersion --prerelease beta ] [ git push origin master --tags ] [ createGithubRelease --prerelease ]",
"updateGitHooks": "simple-git-hooks"
},
"peerDependencies": {
"browserslist": ">=4.0.0"
},
"dependencies": {
"argue-cli": "^2.1.0",
"easy-table": "^1.2.0",
"picocolors": "^1.0.0",
"regexp-tree": "^0.1.24",
"ua-regexes-lite": "^1.2.1"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@commitlint/cz-commitlint": "^18.4.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@size-limit/file": "^11.0.0",
"@swc/core": "^1.3.20",
"@swc/helpers": "^0.5.1",
"@trigen/browserslist-config": "8.0.0-alpha.30",
"@trigen/eslint-config": "8.0.0-alpha.32",
"@trigen/scripts": "8.0.0-alpha.30",
"@types/node": "^20.10.1",
"@vitest/coverage-v8": "^1.0.0",
"browserslist": "^4.22.2",
"clean-publish": "^4.0.1",
"commitizen": "^4.2.5",
"del-cli": "^5.0.0",
"eslint": "^8.28.0",
"nano-staged": "^0.8.0",
"rollup": "^4.6.1",
"rollup-plugin-add-shebang": "^0.3.1",
"rollup-plugin-swc3": "^0.11.0",
"simple-git-hooks": "^2.8.1",
"simple-github-release": "^1.0.0",
"size-limit": "^11.0.0",
"standard-version": "^9.5.0",
"typedoc": "^0.25.1",
"typescript": "^5.1.3",
"vite": "^5.0.4",
"vitest": "^1.0.0"
}
}