forked from hallettj/git-format-staged
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.63 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
{
"name": "git-format-staged",
"version": "0.0.0-development",
"description": "Git command to transform staged files according to a command that accepts file content on stdin and produces output on stdout.",
"scripts": {
"test": "ava",
"prepublishOnly": "sed -i \"s/\\$VERSION/$npm_package_version/\" git-format-staged",
"semantic-release": "semantic-release"
},
"bin": {
"git-format-staged": "git-format-staged"
},
"main": "./no-main.js",
"repository": {
"type": "git",
"url": "https://github.com/hallettj/git-format-staged.git"
},
"keywords": [
"git",
"hook"
],
"author": "Jesse Hallett <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hallettj/git-format-staged/issues"
},
"homepage": "https://github.com/hallettj/git-format-staged#readme",
"files": [
"git-format-staged"
],
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/fs-extra": "^8.1.0",
"@types/tmp": "^0.1.0",
"ava": "^3.8.1",
"eslint": "^5.16.0",
"fs-extra": "^9.0.0",
"husky": "^4.2.5",
"micromatch": "^4.0.2",
"prettier-standard": "^9.1.1",
"semantic-release": "^19.0.2",
"strip-indent": "^3.0.0",
"tmp": "0.2.0",
"ts-node": "^8.9.1",
"typescript": "^3.8.3"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"files": [
"test/**/*_test.ts"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"pre-commit": "./git-format-staged --formatter prettier-standard '*.js'"
}
}
}