-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.37 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
{
"name": "gitsetgo",
"version": "2.0.0",
"description": "Automate synchronized git deployments across multiple repositories.",
"main": "lib/cli.js",
"license": "MIT",
"bin": {
"gitsetgo": "./lib/index.js"
},
"scripts": {
"test": "jest ./src --coverage",
"lint": "eslint --ignore-path .gitignore . --quiet",
"emdaer": "yarn build && emdaer && git add *.md",
"precommit": "yarn lint-staged && yarn type",
"prepush": "yarn lint-staged && yarn type && yarn test",
"commitmsg": "commitlint -e $GIT_PARAMS",
"prepare": "yarn build",
"ci": "yarn lint && yarn type && yarn test",
"type": "flow status",
"build": "babel src -d lib --delete-dir-on-start",
"gitsetgo": "yarn build && ./lib/index.js"
},
"dependencies": {
"@emdaer/plugin-contributors-details-github": "^2.0.3",
"@emdaer/plugin-license-reference": "^2.0.3",
"@emdaer/plugin-shields": "^2.0.3",
"@emdaer/transform-table-of-contents": "^2.0.3",
"chalk": "^2.3.2",
"child-process-promise": "^2.2.1",
"commander": "^2.15.1",
"cosmiconfig": "^4.0.0",
"fs-extra": "^5.0.0",
"lodash": "^4.17.5",
"prettier": "^1.12.1"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.52",
"@babel/core": "^7.0.0-beta.52",
"@babel/node": "^7.0.0-beta.52",
"@babel/preset-env": "^7.0.0-beta.52",
"@babel/preset-flow": "^7.0.0-beta.52",
"@commitlint/config-angular": "^4.3.0",
"@emdaer/cli": "^2.0.3",
"@emdaer/plugin-value-from-package": "^2.0.3",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.2.0",
"commitlint": "^5.0.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-problems": "^0.1.1",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-better": "^0.1.5",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-jest": "^21.15.1",
"eslint-plugin-prettier": "^2.6.2",
"flow-bin": "^0.70.0",
"husky": "^0.14.3",
"jest": "^23.1.3",
"lint-staged": "^7.2.0"
},
"directories": {
"lib": "lib"
},
"keywords": [
"git",
"deployment",
"devops"
],
"author": "Peter Sieg <[email protected]>",
"repository": "git+https://github.com/chasingmaxwell/gitsetgo.git",
"bugs": {
"url": "https://github.com/chasingmaxwell/gitsetgo/issues"
},
"homepage": "https://github.com/chasingmaxwell/gitsetgo#readme"
}