-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1010 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1010 Bytes
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
{
"name": "@arustydev/pre-commit-hooks",
"version": "0.1.0",
"description": "Collection of pre-commit hooks for various languages and tools",
"repository": {
"type": "git",
"url": "git+https://github.com/aRustyDev/pre-commit-hooks.git"
},
"keywords": [
"pre-commit",
"hooks",
"linting",
"formatting",
"git",
"ci"
],
"author": "aRustyDev",
"license": "MIT",
"bugs": {
"url": "https://github.com/aRustyDev/pre-commit-hooks/issues"
},
"homepage": "https://github.com/aRustyDev/pre-commit-hooks#readme",
"files": [
"hooks/",
"tests/",
"docs/",
".pre-commit-hooks.yaml",
"README.md",
"LICENSE"
],
"scripts": {
"test": "./tests/run_tests.sh",
"version": "echo $npm_package_version > VERSION && git add VERSION"
},
"devDependencies": {
"conventional-changelog-cli": "^2.2.2",
"standard-version": "^9.5.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}