-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 968 Bytes
/
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
{
"name": "git-commit-interactive-cli",
"version": "1.0.0",
"description": "git commit interactive cli",
"type": "module",
"bin": {
"gcommit": "lib/cli.js"
},
"keywords": [
"git",
"commit",
"emoji",
"leo",
"lgabrielgr"
],
"author": {
"name": "Leo Gutierrez",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"chalk": "^5.2.0",
"execa": "^6.1.0",
"fs": "^0.0.1-security",
"inquirer": "^9.1.4",
"inquirer-autocomplete-prompt": "^3.0.0",
"node-emoji": "^1.11.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/preset-flow": "^7.18.6",
"flow-bin": "^0.195.0",
"watch": "^0.13.0"
},
"scripts": {
"build": "babel src/ -d lib/",
"reinstall": "rm -rf node_modules && npm install",
"rebuild": "npm run reinstall && npm run build",
"flow": "flow",
"watch": "watch 'npm run build' ./src"
}
}