-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.06 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
{
"name": "gitploy",
"version": "0.1.0",
"description": "Deploy directory to Git branch.",
"author": "Mark <mark@remarkablemark.org>",
"bin": {
"gitploy": "./bin/gitploy.js"
},
"scripts": {
"commitmsg": "commitlint -e $GIT_PARAMS",
"cover": "istanbul cover _mocha",
"coveralls": "cat coverage/lcov.info | coveralls",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "npm run lint -- --fix",
"release": "standard-version --no-verify",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/remarkablemark/gitploy"
},
"bugs": {
"url": "https://github.com/remarkablemark/gitploy/issues"
},
"keywords": [
"git",
"branch",
"deploy",
"release"
],
"devDependencies": {
"@commitlint/cli": "5.2.5",
"@commitlint/config-conventional": "5.2.3",
"coveralls": "3.0.0",
"eslint": "4.11.0",
"husky": "0.14.3",
"istanbul": "0.4.5",
"mocha": "4.0.1",
"proxyquire": "1.8.0",
"sinon": "4.1.3",
"standard-version": "4.2.0"
},
"license": "MIT"
}