-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.14 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.14 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
45
46
47
48
49
50
51
{
"name": "gitidy",
"version": "1.3.0",
"description": "A tool for tidying Git flow.",
"private": false,
"main": "dist",
"bin": {
"gitidy": "dist/index.js"
},
"scripts": {
"build": "rm -rf ./dist && tsc && chmod +x dist/index.js",
"start": "node .",
"dev": "npm run build && npm start",
"link": "npm run build && npm link",
"test": "exit 0"
},
"dependencies": {
"chalk": "^4.1.2",
"compressing": "^1.6.3",
"module-alias": "^2.2.2",
"octokit": "^2.0.14",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/rimraf": "^3.0.2",
"typescript": "^4.9.4"
},
"_moduleAliases": {
"@api": "dist/api",
"@core": "dist/core",
"@cp": "dist/cp",
"@clog": "dist/clog",
"@git": "dist/git",
"@lib": "dist/lib",
"@utils": "dist/utils"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mnrendra/gitidy.git"
},
"keywords": [
"git"
],
"author": "Muhammad Rendra",
"license": "ISC",
"bugs": {
"url": "https://github.com/mnrendra/gitidy/issues"
},
"homepage": "https://github.com/mnrendra/gitidy#readme"
}