-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.5 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "gitkraken-cli",
"version": "2.0.5",
"description": "CLI to launch GitKraken from a given path",
"license": "MIT",
"private": false,
"author": "Connor White",
"contributors": [
"Connor White"
],
"homepage": "https://connorwhite.dev/github/gitkraken-cli",
"repository": {
"type": "git",
"url": "git+https://github.com/bconnorwhite/gitkraken-cli.git"
},
"bugs": {
"url": "https://github.com/bconnorwhite/gitkraken-cli/issues"
},
"keywords": [
"git",
"kraken",
"gitkraken",
"cli",
"open",
"launch",
"run",
"start",
"repo"
],
"type": "module",
"main": ".auto/build/index.js",
"exports": "./.auto/build/index.js",
"types": ".auto/build/index.d.js",
"bin": {
"kraken": ".auto/build/bin/index.js"
},
"files": [
".auto/build/**/!(tsconfig.tsbuildinfo)"
],
"engines": {
"node": "^14.13.1 || >=16.0.0"
},
"scripts": {
"build": "auto build",
"dev": "auto dev",
"lint": "auto lint",
"prepack": "yarn build",
"release": "auto release",
"test": "auto test",
"typecheck": "auto typecheck"
},
"dependencies": {
"@bconnorwhite/exec": "^6.0.7",
"clee": "^0.2.9",
"is-absolute": "^1.0.0"
},
"devDependencies": {
"@types/is-absolute": "^1.0.0",
"autorepo": "^0.1.7"
},
"eslintConfig": {
"extends": "@autosoft/eslint-config"
},
"jest": {
"preset": "@autosoft/jest-preset"
},
"npmpackagejsonlint": {
"extends": "npm-package-json-lint-config-auto"
}
}