-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
117 lines (117 loc) · 3.41 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
112
113
114
115
116
117
{
"name": "backport",
"description": "A CLI tool that automates the process of backporting commits",
"keywords": [
"backport",
"backporting",
"versioning",
"cherry-pick",
"git",
"git-cherry-pick",
"cli",
"automation",
"productivity",
"branches",
"branching"
],
"version": "9.6.2",
"main": "./dist/entrypoint.api.js",
"types": "dist/entrypoint.api.d.ts",
"bin": {
"backport": "./bin/backport"
},
"license": "MIT",
"scripts": {
"postinstall": "test -f ./dist/scripts/runPostinstall.js && node ./dist/scripts/runPostinstall.js || echo 'Dist folder missing'",
"version": "echo \"Bumping version\" && yarn extractPackageVersion && git add src/utils/packageVersion.ts && yarn tsc",
"prepare": "husky install",
"prepublishOnly": "rm -rf ./dist/ && yarn && yarn lint && yarn tsc",
"extractPackageVersion": "node -p \"'export const PACKAGE_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" | prettier --parser typescript > src/utils/packageVersion.ts",
"lint-and-test": "yarn lint && yarn test-all",
"lint": "tsc && eslint './**/*.{ts,js}'",
"start": "NODE_ENV=development ts-node --transpile-only ./src/entrypoint.cli.ts",
"test-all": "jest --config ./jest.config.all.ts",
"test-mutation": "jest --config ./jest.config.mutation.ts",
"test-private": "jest --config ./jest.config.private.ts",
"test": "jest"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"files": [
"bin",
"dist",
"yarn.lock"
],
"author": "Søren Louv-Jansen",
"homepage": "https://github.com/sorenlouv/backport/blob/master/README.md",
"bugs": {
"url": "https://github.com/sorenlouv/backport/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sorenlouv/backport.git"
},
"greenkeeper": {
"ignore": [
"@types/node"
]
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@octokit/rest": "^19.0.7",
"axios": "^1.6.2",
"dedent": "^0.7.0",
"del": "^6.1.1",
"dotenv": "^16.0.3",
"elastic-apm-node": "^3.47.0",
"find-up": "^5.0.0",
"graphql": "^16.8.0",
"graphql-tag": "^2.12.6",
"handlebars": "^4.7.8",
"inquirer": "^8.2.5",
"lodash": "^4.17.21",
"make-dir": "^3.1.0",
"ora": "^5.4.1",
"safe-json-stringify": "^1.2.0",
"strip-json-comments": "^3.1.1",
"terminal-link": "^2.1.1",
"utility-types": "^3.10.0",
"winston": "^3.8.2",
"yargs": "^17.7.2",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"@types/core-js": "^2.5.5",
"@types/dedent": "^0.7.0",
"@types/inquirer": "^8.2.6",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.199",
"@types/node": "^20.11.24",
"@types/safe-json-stringify": "^1.1.3",
"@types/yargs": "^17.0.28",
"@types/yargs-parser": "^21.0.1",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"graphql-config": "^5.0.3",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-snapshot-serializer-ansi": "^1.0.0",
"lint-staged": "^14.0.1",
"nock": "^13.3.4",
"prettier": "^3.2.5",
"strip-ansi": "^6.0.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.1",
"typescript": "5.3.3"
}
}