-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.08 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
{
"name": "@xarunoba/clai",
"version": "0.5.0",
"description": "Run package installation after checking for lockfile updates.",
"main": "bin/cli.js",
"repository": {
"type": "git",
"url": "https://github.com/xarunoba/clai.git"
},
"type": "module",
"files": [
"bin"
],
"bin": {
"clai": "bin/cli.js"
},
"scripts": {
"prepare": "npx simple-git-hooks",
"start": "node ./bin/cli.js"
},
"author": "Jeter Jude C. Santos <[email protected]> (https://xaru.win)",
"license": "MIT",
"keywords": [
"cli",
"clai",
"lockfile-check",
"git",
"post-merge",
"developer-experience",
"dependency-updater"
],
"homepage": "https://github.com/xarunoba/clai",
"bugs": {
"url": "https://github.com/xarunoba/clai/issues"
},
"dependencies": {
"yargs": "^17.7.2"
},
"devDependencies": {
"lint-staged": "^15.2.2",
"prettier": "3.2.5",
"simple-git-hooks": "^2.9.0"
},
"lint-staged": {
"*": "prettier --write"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"post-merge": "node ./bin/cli.js"
}
}