This repository has been archived by the owner on Feb 16, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
executable file
·67 lines (67 loc) · 2.05 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": "autogit",
"description": "Define commands, using plugins, to execute across all your repositories.",
"version": "1.2.7",
"bin": "dist/src/bin/index.js",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"compile": "tsc --skipLibCheck && tstei",
"compile:watch": "tsc --skipLibCheck --watch",
"prepublishOnly": "npm run clean && npm run compile",
"postpublish": "npm run docs:release",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:push": "push-dir --dir=docs/.vuepress/dist --branch=gh-pages",
"docs:release": "npm run docs:build && npm run docs:push"
},
"bugs": {
"url": "https://github.com/fabiospampinato/autogit/issues"
},
"license": "MIT",
"author": {
"name": "Fabio Spampinato",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/fabiospampinato/autogit.git"
},
"keywords": [
"autogit",
"git",
"automator",
"bulk",
"plugins"
],
"dependencies": {
"autogit-command-shell": "^1.0.3",
"autogit-command-status": "^1.0.1",
"caporal": "git://github.com/fabiospampinato/Caporal.js#cf0f5eeefb2e04cc07798bf4a45d6bda5e2a2f63",
"execa": "^1.0.0",
"inquirer-helpers": "^1.3.2",
"listr": "git://github.com/fabiospampinato/listr#d1249e5f7b64c95fb6940e9aff020646e2941183",
"listr-compose": "^1.0.0",
"listr-update-renderer": "git://github.com/fabiospampinato/listr-update-renderer#a83ad7bd4f7b91032c62e6e586c60f22c551c95d",
"lodash": "^4.17.11",
"micromatch": "^3.1.10",
"minimist": "^1.2.0",
"pify": "^4.0.0",
"plist": "^3.0.1",
"simple-git": "^1.105.0",
"specialist": "^0.3.0",
"strip-ansi": "^5.0.0",
"tildify": "^1.2.0",
"untildify": "^3.0.3",
"walker": "^1.0.7"
},
"devDependencies": {
"@types/node": "^10.12.8",
"push-dir": "^0.4.1",
"rimraf": "^2.6.2",
"typescript": "^3.0.3",
"typescript-transform-export-interop": "^1.0.1",
"vuepress": "^0.14.4"
}
}