forked from sorenlouv/backport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 2.91 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
{
"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.3.0",
"main": "./dist/index.js",
"bin": {
"backport": "./dist/index.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn lint"
}
},
"license": "MIT",
"scripts": {
"format": "prettier \"./{src,test}/**/*.{ts,js,json}\" --write",
"lint": "tsc --project ./src/test/tsconfig.json && eslint './**/*.{ts,js}'",
"postinstall": "test -f ./dist/scripts/runPostinstall.js && node ./dist/scripts/runPostinstall.js || echo 'Dist folder missing'",
"prepublishOnly": "tsc",
"publish-dry-run": "tar -tf $(npm pack)",
"test": "jest",
"start": "ts-node --transpile-only ./src/index.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": ">=8.0.0"
},
"dependencies": {
"axios": "^0.19.2",
"dedent": "^0.7.0",
"del": "^5.1.0",
"find-up": "^4.1.0",
"inquirer": "^7.1.0",
"lodash.flatmap": "^4.5.0",
"lodash.isempty": "^4.4.0",
"lodash.isstring": "^4.0.1",
"lodash.uniq": "^4.5.0",
"make-dir": "^3.0.2",
"ora": "^4.0.3",
"safe-json-stringify": "^1.2.0",
"strip-json-comments": "^3.1.0",
"winston": "^3.2.1",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/core-js": "^2.5.2",
"@types/dedent": "^0.7.0",
"@types/inquirer": "^6.5.0",
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.144",
"@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": "^12.12.31",
"@types/safe-json-stringify": "^1.1.0",
"@types/yargs": "^15.0.4",
"@types/yargs-parser": "^15.0.0",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.3",
"jest": "^25.3.0",
"jest-snapshot-serializer-ansi": "^1.0.0",
"lint-staged": "^10.1.2",
"lodash": "^4.17.15",
"prettier": "^2.0.4",
"strip-ansi": "^6.0.0",
"ts-jest": "^25.3.1",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
}
}