-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.82 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
{
"name": "gamma-cli",
"version": "0.0.7",
"description": "A tool for managing all git repos on your local machine",
"scripts": {
"test": "NODE_ENV=test jest",
"build": "rimraf dist/ && babel ./src --out-dir dist/ --minified --compact --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"compile": "tsc",
"dev": "tsc -w",
"clean": "rimraf dist",
"start": "gulp"
},
"repository": {
"type": "git",
"url": "https://github.com/ashwinGokhale/Gamma"
},
"author": "Ashwin Gokhale",
"license": "MIT",
"bugs": {
"url": "https://github.com/ashwinGokhale/Gamma/issues"
},
"homepage": "https://github.com/ashwinGokhale/Gamma#readme",
"bin": {
"gamma": "./dist/gamma.js"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/chokidar": "^1.7.5",
"@types/commander": "^2.12.2",
"@types/glob": "^7.1.1",
"@types/inquirer": "^0.0.43",
"@types/jest": "^23.3.10",
"@types/log-update": "^2.0.0",
"@types/mock-fs": "^3.6.30",
"@types/node": "^10.12.12",
"@types/shelljs": "^0.8.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"gulp": "^4.0.0",
"gulp-babel": "^7.0.0",
"gulp-concat": "^2.6.1",
"gulp-mocha": "^6.0.0",
"gulp-uglify": "^3.0.0",
"jest": "^23.6.0",
"memfs": "^2.14.1",
"prettier": "^1.15.3",
"rimraf": "^2.6.2",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0"
},
"dependencies": {
"chalk": "^2.4.0",
"child-process-promise": "^2.2.1",
"chokidar": "^1.7.0",
"commander": "^2.19.0",
"expand-tilde": "^2.0.2",
"fuzzy": "^0.1.3",
"glob": "^7.1.2",
"inquirer": "^6.2.0",
"log-update": "^2.2.0",
"ps-node": "^0.1.6",
"readline": "^1.3.0",
"shelljs": "^0.7.8",
"typescript": "^3.1.6",
"user-startup": "^0.2.2",
"winston": "^3.1.0"
}
}