-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 905 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 905 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
{
"devDependencies": {
"coffeescript": "^2.7.0"
},
"name": "formal-git",
"version": "1.2.9",
"description": "Write standarized git commit messages for better organization",
"main": "lib/main.js",
"scripts": {
"build": "coffee --map --compile --output ./lib/ ./src/main.coffee && node add-shebang.js",
"prepare": "npm run build",
"dev": "npm run prepare && npm run dev:run -- ",
"dev:run": "node ./lib/main.js",
"prepublishOnly": "npm run build"
},
"files": [
"lib/"
],
"bin": {
"formal-git": "./lib/main.js",
"fo": "./lib/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mauro-balades/formal-git.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mauro-balades/formal-git/issues"
},
"homepage": "https://github.com/mauro-balades/formal-git#readme"
}