-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.73 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
{
"name": "ua-regexes-lite",
"type": "module",
"version": "1.2.1",
"description": "A lite useragent regexes collection.",
"author": "dangreen",
"license": "MIT",
"funding": [
"https://opencollective.com/browserslist-useragent-regexp",
"https://ko-fi.com/dangreen"
],
"repository": {
"type": "git",
"url": "https://github.com/TrigenSoftware/ua-regexes-lite.git"
},
"bugs": {
"url": "https://github.com/TrigenSoftware/ua-regexes-lite/issues"
},
"keywords": [
"useragent",
"regex",
"regexp"
],
"engines": {
"node": ">=14"
},
"exports": {
"types": "./index.d.ts",
"import": "./index.js"
},
"publishConfig": {
"directory": "package"
},
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"clear": "del ./package",
"prepublishOnly": "run test clear clean-publish",
"postpublish": "pnpm clear",
"lint": "eslint './*.{js,cjs}' 'test/**/*.js'",
"test:unit": "node --test ./test/index.test.js",
"test": "run -p lint test:unit",
"commit": "cz",
"bumpVersion": "standard-version",
"createGithubRelease": "simple-github-release",
"release": "run bumpVersion [ git push origin main --tags ] createGithubRelease",
"updateGitHooks": "simple-git-hooks"
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@commitlint/cz-commitlint": "^18.0.0",
"@trigen/eslint-config": "8.0.0-alpha.29",
"@trigen/scripts": "8.0.0-alpha.29",
"clean-publish": "^4.0.1",
"commitizen": "^4.2.5",
"del-cli": "^5.0.0",
"eslint": "^8.25.0",
"nano-staged": "^0.8.0",
"simple-git-hooks": "^2.8.0",
"simple-github-release": "^1.0.0",
"standard-version": "^9.5.0"
}
}