-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.59 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
{
"name": "branch-rule-lint",
"version": "0.6.0",
"description": "Flexible git branch name linter with some extra validating features",
"main": "bin/index.js",
"license": "MIT",
"bin": {
"branch-name-lint": "./bin/index.js"
},
"repository": {
"type": "git",
"url": "[email protected]:AsuraLuo/rollup-branch-name-lint.git"
},
"homepage": "https://github.com/AsuraLuo/rollup-branch-name-lint.git",
"keywords": [
"lint",
"validate",
"branch",
"name",
"git",
"branch name linter",
"branch name validator"
],
"files": [
"bin"
],
"scripts": {
"clean": "rm -rf bin",
"build": "rollup --config --bundleConfigAsCjs",
"lint": "eslint src/**/*.ts --fix"
},
"dependencies": {
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.0",
"chalk": "^5.0.0",
"cosmiconfig": "^7.0.1",
"path-to-regexp": "^6.2.0",
"rollup": "^3.21.0",
"tslib": "^2.5.0"
},
"devDependencies": {
"@types/node": "^18.16.0",
"@typescript-eslint/eslint-plugin": "^5.30.4",
"@typescript-eslint/parser": "^5.30.4",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^13.1.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"typescript": "^4.5.4"
},
"publishConfig": {
"access": "public"
}
}