forked from barzik/branch-name-lint
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.21 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
{
"name": "branch-name-lint",
"version": "2.1.1",
"description": "Lint your branch names",
"license": "MIT",
"repository": "barzik/branch-name-lint",
"author": {
"name": "Ran Bar-Zik",
"email": "[email protected]",
"url": "https://internet-israel.com"
},
"bin": {
"branch-name-lint": "bin/branch-name-lint"
},
"engines": {
"node": ">=10"
},
"husky": {
"hooks": {
"pre-push": "npm test && node ./bin/branch-name-lint sample-configuration.json"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "npm run lint && nyc ava",
"release": "npm publish",
"prerelease": "npm version patch && git push --follow-tags --no-verify",
"lint": "npx eslint *.js --ignore-path .gitignore"
},
"files": [
"index.js",
"cli.js"
],
"keywords": [
"cli-app",
"cli",
"branch-name-lint",
"lint",
"validate",
"branch"
],
"dependencies": {
"find-up": "^5.0.0",
"meow": "^9.0.0"
},
"devDependencies": {
"ava": "^3.15.0",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"husky": "^6.0.0",
"nyc": "^15.1.0",
"sinon": "^11.1.1"
}
}