-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
117 lines (117 loc) · 3.21 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": "5.6.6",
"main": "./dist/entrypoint.module.js",
"types": "dist/entrypoint.module.d.ts",
"bin": {
"backport": "./dist/entrypoint.cli.js"
},
"license": "MIT",
"scripts": {
"lint": "tsc --project ./tsconfig.test.json && eslint './**/*.{ts,js}'",
"prepare": "husky install",
"postinstall": "test -f ./dist/scripts/runPostinstall.js && node ./dist/scripts/runPostinstall.js || echo 'Dist folder missing'",
"prepublishOnly": "tsc --project ./tsconfig.prod.json",
"test": "jest",
"test-private": "jest --config ./jest.config.private.js",
"test-all": "yarn lint && jest --config ./jest.config.all.js",
"start": "ts-node --transpile-only ./src/entrypoint.cli.ts"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"files": [
"dist",
"yarn.lock"
],
"author": "Søren Louv-Jansen",
"homepage": "https://github.com/sqren/backport/blob/master/README.md",
"bugs": {
"url": "https://github.com/sqren/backport/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sqren/backport.git"
},
"greenkeeper": {
"ignore": [
"@types/node"
]
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@octokit/rest": "^18.7.1",
"@types/lodash.difference": "^4.5.6",
"@types/lodash.intersection": "^4.4.6",
"axios": "^0.21.1",
"dedent": "^0.7.0",
"del": "^6.0.0",
"find-up": "^5.0.0",
"inquirer": "^8.1.2",
"lodash.difference": "^4.5.0",
"lodash.flatmap": "^4.5.0",
"lodash.intersection": "^4.4.0",
"lodash.isempty": "^4.4.0",
"lodash.isstring": "^4.0.1",
"lodash.uniq": "^4.5.0",
"make-dir": "^3.1.0",
"ora": "^5.4.1",
"safe-json-stringify": "^1.2.0",
"strip-json-comments": "^3.1.1",
"winston": "^3.3.3",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/core-js": "^2.5.4",
"@types/dedent": "^0.7.0",
"@types/inquirer": "^7.3.3",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.171",
"@types/lodash.flatmap": "^4.5.6",
"@types/lodash.isempty": "^4.4.6",
"@types/lodash.isstring": "^4.0.6",
"@types/lodash.uniq": "^4.5.6",
"@types/node": "^16.4.1",
"@types/safe-json-stringify": "^1.1.2",
"@types/yargs": "^16.0.4",
"@types/yargs-parser": "^20.2.1",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^3.4.0",
"graphql": "^15.5.1",
"graphql-tag": "^2.12.5",
"husky": "^7.0.1",
"jest": "^27.0.6",
"jest-snapshot-serializer-ansi": "^1.0.0",
"lint-staged": "^11.1.1",
"lodash": "^4.17.21",
"nock": "^13.1.1",
"prettier": "^2.3.2",
"strip-ansi": "^6.0.0",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}