-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.48 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.48 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "ogit",
"description": "A lazy developer's Git CLI made simple. Makes using git on cloud IDEs (i.e. C9) a walk in the park.",
"version": "1.31.1",
"author": "shakil.siraj@gmail.com",
"bin": {
"ogit": "./bin/run"
},
"bugs": "https://github.com/shakilsiraj/ogit/issues",
"dependencies": {
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.14.0",
"@oclif/plugin-autocomplete": "^0.1.5",
"@oclif/plugin-help": "^2.2.3",
"@oclif/plugin-not-found": "^1.2.3",
"@oclif/plugin-warn-if-update-available": "^1.7.0",
"chalk": "^2.4.2",
"cli-ux": "^4.9.3",
"columnify": "^1.5.4",
"inquirer": "^7.0.4",
"inquirer-autocomplete-prompt": "1.4.0",
"json-object-mapper": "^1.6.0",
"reflect-metadata": "^0.1.13",
"simple-git": "^1.131.0",
"@andrewwlane/ssh-keygen2": "1.1.4",
"terminal-link": "^1.2.0",
"tslib": "^1.9.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/tslint": "^3.1.1",
"@types/chai": "^4.1.7",
"@types/inquirer": "0.0.43",
"@types/jest": "^23.3.13",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"@types/uuid": "^3.4.4",
"globby": "^8.0.2",
"prettier": "^1.18.2",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"tslint": "^5.12.1",
"typescript": "^2.9.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/shakilsiraj/ogit",
"keywords": [
"git",
"git cli",
"cli",
"Source Control",
"Version Control",
"VCS",
"IDE",
"Online",
"Cloud"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "ogit",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-autocomplete",
"@oclif/plugin-warn-if-update-available"
]
},
"repository": "https://github.com/shakilsiraj/ogit",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "tslint -p . -t stylish",
"prettier": "prettier --write src/**/*.ts",
"prepack": "rm -rf lib && tsc && oclif-dev manifest && oclif-dev readme",
"test": "jest --runInBand",
"test-watch": "jest --watch --no-cache --runInBand --colors",
"linter-autofix": "tslint -p . --fix",
"jest-clear-cache": "jest --clearCache",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}