-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.43 KB
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
{
"name": "branch-name-lint",
"version": "3.0.1",
"description": "Lint your branch names",
"license": "MIT",
"repository": "barzik/branch-name-lint",
"author": {
"name": "Ran Bar-Zik",
"email": "ran.bar.zik@teamaol.com",
"url": "https://internet-israel.com"
},
"bin": {
"branch-name-lint": "bin/branch-name-lint"
},
"engines": {
"node": ">=18"
},
"husky": {
"hooks": {
"pre-push": "npm test && node ./bin/branch-name-lint tests/sample-configuration.json"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "node tests/test.js && npm run e2e",
"e2e": "node ./tests/e2e-test.js",
"prepack": "npm prune --production && rm package-lock.json && npm shrinkwrap",
"postpack": "git checkout package-lock.json && git clean -f npm-shrinkwrap.json",
"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": {
"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",
"rimraf": "^6.0.1",
"sinon": "^11.1.1"
}
}