forked from Eywek/git-commit-push-via-github-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.68 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
66
67
68
69
70
{
"directories": {
"lib": "lib",
"test": "test"
},
"author": "azu",
"license": "MIT",
"files": [
"bin/",
"lib/",
"src/"
],
"name": "git-commit-push-via-github-api",
"version": "1.0.2",
"description": "Git commit and push by using GitHub API. No depended Git binary.",
"main": "lib/git-commit-push-via-github-api.js",
"scripts": {
"preexample": "npm run build",
"example": "DEBUG=git-commit-push-via-github-api node example/example.js",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx,css}'",
"precommit": "lint-staged",
"postcommit": "git reset",
"build": "cross-env NODE_ENV=production tsc -p .",
"watch": "tsc -p . --watch",
"prepublish": "npm run --if-present build"
},
"keywords": [
"git",
"github",
"commit",
"push",
"api",
"lambda"
],
"repository": {
"type": "git",
"url": "https://github.com/azu/git-commit-push-via-github-api.git"
},
"bugs": {
"url": "https://github.com/azu/git-commit-push-via-github-api/issues"
},
"homepage": "https://github.com/azu/git-commit-push-via-github-api",
"devDependencies": {
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.46",
"cross-env": "^5.1.0",
"husky": "^0.14.3",
"lint-staged": "^8.1.0",
"mocha": "^4.0.1",
"prettier": "^1.7.4",
"ts-node": "^3.3.0",
"typescript": "^2.5.3"
},
"prettier": {
"printWidth": 120,
"tabWidth": 4
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write",
"git add"
]
},
"types": "lib/git-commit-push-via-github-api.d.ts",
"dependencies": {
"@octokit/rest": "^16.3.0",
"@types/debug": "^0.0.30",
"debug": "^3.1.0"
}
}