forked from hallettj/git-format-staged
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.61 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": "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": {
"precommit": "./git-format-staged --formatter prettier-standard '*.js'",
"commitmsg": "commitlint -e $GIT_PARAMS",
"test": "ava",
"prepublishOnly": "sed -i \"s/\\$VERSION/$npm_package_version/\" git-format-staged",
"semantic-release": "semantic-release"
},
"bin": "./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"
],
"release": {
"branch": "master"
},
"devDependencies": {
"@babel/plugin-transform-flow-strip-types": "^7.4.4",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"ava": "^1.4.1",
"eslint": "^5.16.0",
"flow-bin": "^0.95.1",
"fs-extra": "^6.0.1",
"husky": "^0.14.3",
"prettier-standard": "^9.1.1",
"semantic-release": "^15.13.24",
"strip-indent": "^2.0.0",
"tmp": "0.0.33"
},
"ava": {
"babel": {
"testOptions": {
"plugins": [
"@babel/plugin-transform-flow-strip-types"
]
}
},
"color": false,
"files": [
"test/**/*_test.js"
]
}
}