forked from sorenlouv/backport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 2.9 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
118
119
120
121
122
123
124
{
"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": "4.4.1",
"main": "./dist/cli/index.js",
"bin": {
"backport": "./dist/cli/index.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"license": "MIT",
"scripts": {
"build": "tsc",
"cover": "jest --coverage",
"format": "prettier \"./src/**/*.ts\" --write",
"lint": "npx tsc -p ./test/tsconfig.json && tslint \"./src/**/*.ts\"",
"postinstall": "node scripts/postinstall.js",
"prepublishOnly": "npx tsc",
"prepush": "yarn lint",
"publish-dry-run": "tar -tf $(npm pack)",
"test": "jest"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"files": [
"dist",
"yarn.lock",
"scripts/postinstall.js",
"templates/configTemplate.json"
],
"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"
},
"jest": {
"testURL": "http://localhost/",
"setupFiles": [
"./test/setup.js"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "test.ts$",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"axios": "^0.18.0",
"chalk": "^2.4.1",
"find-up": "^3.0.0",
"inquirer": "^6.0.0",
"joi": "^13.4.0",
"lodash.flatten": "^4.4.0",
"lodash.get": "^4.4.2",
"lodash.isempty": "^4.4.0",
"lodash.isstring": "^4.0.1",
"mkdirp": "^0.5.1",
"ora": "^3.0.0",
"rimraf": "^2.6.2",
"strip-json-comments": "^2.0.1",
"yargs": "^12.0.1"
},
"devDependencies": {
"@types/core-js": "^2.5.0",
"@types/find-up": "^2.1.1",
"@types/inquirer": "^0.0.42",
"@types/jest": "^23.3.4",
"@types/joi": "^13.4.0",
"@types/lodash.flatten": "^4.4.3",
"@types/lodash.get": "^4.4.3",
"@types/lodash.isempty": "^4.4.3",
"@types/lodash.isstring": "^4.0.3",
"@types/mkdirp": "^0.5.2",
"@types/nock": "^9.3.0",
"@types/node": "^10.5.2",
"@types/ora": "^1.3.4",
"@types/rimraf": "^2.0.2",
"@types/strip-json-comments": "^0.0.30",
"@types/yargs": "^12.0.0",
"axios-mock-adapter": "^1.15.0",
"husky": "^1.0.0",
"jest": "^23.4.1",
"lint-staged": "^8.0.0",
"lodash.last": "^3.0.0",
"nock": "^10.0.0",
"prettier": "^1.13.5",
"ts-jest": "^23.0.1",
"ts-node": "^7.0.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.14.0",
"typescript": "^3.0.1"
}
}