forked from msanguineti/git-oneflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.22 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
{
"name": "git-oneflow-bb",
"version": "1.3.0",
"description": "CLI tooling implementing GIT OneFlow branching model, with BitBucket Server pull requests",
"bin": {
"gof": "bin/cli",
"git-oneflow": "bin/cli"
},
"files": [
"bin/cli"
],
"scripts": {
"pretest": "npm run lint && npm run format",
"test": "jest",
"clean": "rimraf bin",
"prebuild": "npm run clean",
"build": "rollup -c",
"lint": "eslint --fix \"*.js\" \"src/**/*.ts\" \"tests/**/*.ts\"",
"format": "prettier --write .",
"watch": "rollup -c --watch",
"typecheck": "tsc",
"prerelease": "run-s typecheck lint format",
"release": "standard-version",
"postrelease": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/msanguineti/git-oneflow.git"
},
"keywords": [
"git",
"oneflow",
"branching",
"model",
"Adam",
"Ruka"
],
"author": "Guillaume Dupuy",
"license": "MIT",
"bugs": {
"url": "https://github.com/guidupuy/git-oneflow-bb/issues"
},
"homepage": "https://github.com/guidupuy/git-oneflow-bb#readme",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/inquirer": "^6.5.0",
"@types/jest": "^26.0.0",
"@types/shelljs": "^0.8.8",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.10",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rollup": "^2.16.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^6.1.0",
"standard-version": "^8.0.0",
"typescript": "^3.9.5"
},
"dependencies": {
"@atlassian/bitbucket-server": "0.0.6",
"chalk": "^4.1.0",
"commander": "^5.1.0",
"cosmiconfig": "^6.0.0",
"inquirer": "^7.2.0",
"shelljs": "^0.8.4"
}
}