This repository has been archived by the owner on Dec 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.45 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
{
"name": "@sakuraapi/merge-to-master",
"version": "0.3.2",
"description": "A git utility to handle a processed merge to master",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": {
"m2m": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist/ ; mkdir -p ./dist; tsc ; chmod +x ./dist/index.js ; ./scripts/save-version.sh",
"install": "chmod +x ./scripts/*.* ; true",
"prepublish": "npm run build && npm test && npx nsp check",
"start": "npm run build ; m2m",
"test": "echo no tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/etsuo/merge-to-master.git"
},
"keywords": [
"git",
"merge",
"utility",
"master"
],
"author": "Jean-Pierre E. Poveda",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/etsuo/merge-to-master/issues"
},
"homepage": "https://github.com/etsuo/merge-to-master#readme",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"cli-table": "^0.3.1",
"colors": "^1.1.2",
"commander": "^2.11.0",
"inquirer": "^4.0.0",
"inquirer-autocomplete-prompt": "^0.12.0",
"rxjs": "^5.5.2",
"semver": "^5.4.1",
"shelljs": "^0.7.8"
},
"devDependencies": {
"@types/colors": "^1.1.3",
"@types/commander": "^2.11.0",
"@types/inquirer": "0.0.35",
"@types/semver": "^5.4.0",
"@types/shelljs": "^0.7.6",
"nsp": "^3.1.0",
"typescript": "^2.6.1"
}
}