-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.2 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
{
"name": "git-stacked-rebase",
"version": "0.6.1",
"main": "dist/git-stacked-rebase.js",
"types": "dist/git-stacked-rebase.d.ts",
"repository": "[email protected]:kiprasmel/git-stacked-rebase.git",
"author": "Kipras Melnikovas <[email protected]> (https://kipras.org/)",
"license": "UNLICENSED",
"bin": {
"git-stacked-rebase": "./dist/git-stacked-rebase.js"
},
"scripts": {
"install:all": "yarn && yarn --cwd nvim-git-rebase-todo && yarn --cwd git-reconcile-rewritten-list",
"dev": "yarn build:core && yarn tsc -w",
"test": "ts-node-dev ./test/run.ts",
"build": "yarn test && yarn build:all",
"build:all": "node ./script/prebuild.js && yarn build:core && yarn build:nvim && yarn build:reconciler && node ./script/postbuild.js",
"build:core": "yarn tsc -b",
"build:nvim": "yarn --cwd nvim-git-rebase-todo build",
"build:reconciler": "yarn --cwd git-reconcile-rewritten-list build",
"prepack": "yarn build",
"cloc": "./script/cloc.sh"
},
"devDependencies": {
"@types/node": "16.11.11",
"@types/nodegit": "0.27.10",
"ts-node-dev": "1.1.8",
"typescript": "4.5.2"
},
"dependencies": {
"nice-comment": "0.9.0",
"nodegit": "0.28.0-alpha.18",
"open": "8.4.2",
"pipestdio": "0.1.3"
}
}