-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
111 lines (111 loc) · 2.86 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "gh-shipit",
"version": "2.0.1",
"description": "Ship Releases",
"keywords": [
"github",
"organization",
"release"
],
"repository": "vladgolubev/gh-shipit",
"license": "MIT",
"author": {
"name": "Vlad Holubiev",
"email": "hello@vladholubiev.com",
"url": "vladholubiev.com"
},
"bin": {
"shipit": "./lib/cli.js"
},
"files": [
"lib/"
],
"scripts": {
"build": "rm -rf lib/ && babel src --out-dir lib --ignore '**/*.test.ts' --extensions '.ts'",
"coverage": "TZ=UTC jest --coverage",
"lint": "eslint . --ext .js,.ts,.json --fix",
"lint:ci": "eslint . --ext .js,.ts,.json",
"prepack": "yarn build",
"start": "node ./lib/cli.js",
"start:approve-server": "node ./lib/approve-server.js",
"test": "TZ=UTC FORCE_COLOR=0 jest",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch"
},
"lint-staged": {
"*.{html,json,md,yml,graphql}": [
"prettier --write --ignore-path=./.eslintignore"
],
"*.{ts,json}": [
"eslint --fix"
]
},
"prettier": "@shelf/prettier-config",
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"@octokit/rest": "16.36.0",
"@shelf/gh-sdk": "0.8.1",
"apollo-cache-inmemory": "1.6.6",
"apollo-client": "2.6.10",
"apollo-link-context": "1.0.20",
"apollo-link-http": "1.5.17",
"boxen": "4.2.0",
"chalk": "2.4.2",
"cli-width": "2.2.0",
"debug": "4.3.4",
"enquirer": "2.3.6",
"graphql": "14.5.8",
"graphql-tag": "2.11.0",
"human-date": "1.4.0",
"inquirer": "7.3.3",
"lodash": "4.17.21",
"log-symbols": "3.0.0",
"longest": "2.0.1",
"node-fetch": "2.6.1",
"normalize-space-x": "3.0.0",
"opn": "5.5.0",
"ora": "3.4.0",
"p-filter": "2.1.0",
"p-map": "4.0.0",
"p-progress": "0.4.2",
"pretty-version-diff": "1.0.0",
"progress": "2.0.3",
"semver": "6.3.0",
"string-width": "4.2.0",
"update-notifier": "3.0.1"
},
"devDependencies": {
"@babel/cli": "7.17.10",
"@babel/core": "7.18.2",
"@babel/preset-env": "7.18.2",
"@babel/preset-typescript": "7.17.12",
"@octokit/graphql-schema": "9.0.0",
"@shelf/eslint-config": "2.18.0",
"@shelf/prettier-config": "1.0.0",
"@shelf/tsconfig": "0.0.6",
"@types/debug": "4.1.7",
"@types/human-date": "1.4.2",
"@types/inquirer": "6.5.0",
"@types/jest": "27.5.1",
"@types/lodash": "4.14.182",
"@types/mockdate": "2.0.0",
"@types/node-fetch": "2.6.1",
"@types/progress": "2.0.5",
"@types/semver": "7.3.9",
"@types/strip-color": "0.1.0",
"@types/update-notifier": "2.5.0",
"eslint": "8.16.0",
"husky": "8.0.1",
"jest": "28.1.0",
"lint-staged": "12.5.0",
"mockdate": "2.0.5",
"prettier": "2.6.2",
"strip-color": "0.1.0",
"typescript": "4.7.2"
},
"engines": {
"node": ">=16"
}
}