-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
67 lines (67 loc) · 1.69 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
{
"name": "gflow",
"version": "5.1.4",
"description": "A gitflow command line tool",
"main": "src/index.js",
"bin": "bin/gflow.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"lint": "eslint \"{bin,src,test}/**/*.js\"",
"lint:fix": "eslint --fix \"{bin,src,test}/**/*.js\"",
"prettier": "prettier '{bin,src,test}/**/*.js' --write",
"release": "semantic-release",
"release:dryRun": "semantic-release --dryRun"
},
"husky": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
},
"author": "Romain Lenzotti",
"license": "MIT",
"dependencies": {
"@samverschueren/stream-to-observable": "^0.3.0",
"any-observable": "^0.4.0",
"chalk": "^2.3.0",
"commander": "^3.0.1",
"execa": "^2.0.4",
"fancy-log": "^1.3.2",
"figures": "^3.0.0",
"fs-extra": "^8.1.0",
"has-yarn": "^2.1.0",
"inquirer": "^7.0.0",
"listr": "^0.14.3",
"lodash": "^4.17.4",
"md5": "^2.2.1",
"pkg-dir": "^4.2.0",
"read-pkg-up": "^6.0.0",
"rxjs": "^6.3.3",
"split": "^1.0.1",
"update-notifier": "^3.0.1"
},
"devDependencies": {
"eslint": "^6.4.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.12.0",
"husky": "^3.0.5",
"prettier": "^1.15.3",
"semantic-release": "^15.13.3",
"travis-deploy-once": "^5.0.11"
},
"files": [
"bin/gflow.js",
"bin",
"src"
],
"directories": {
"src": "./src",
"bin": "./bin"
},
"repository": {
"type": "git",
"url": "https://github.com/Romakita/gflow.git"
},
"bugs": {
"url": "https://github.com/Romakita/gflow/issues"
},
"homepage": "https://github.com/Romakita/gflow"
}