-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.84 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
{
"name": "gilbert",
"version": "0.1.8",
"description": "An assistant to help with managing microservices compatible with Google App Engine configurations, in dev.",
"main": "index.js",
"private": false,
"scripts": {
"start": "tsc && ts-node src/index",
"build": "tsc src/index"
},
"bin": {
"gilbert": "bin/gilbert"
},
"publishConfig": {
"access": "public",
"cache": "cache/.npm"
},
"files": [
"bin/",
"dist/",
"README.md"
],
"keywords": [
"app engine",
"microservices",
"app",
"developer tools",
"engine",
"services"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stupendoussuperpowers/gilbert.git"
},
"author": "stupendoussuperpowers",
"license": "ISC",
"bugs": {
"url": "https://github.com/stupendoussuperpowers/gilbert/issues"
},
"homepage": "https://github.com/stupendoussuperpowers/gilbert#readme",
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/cli-table": "^0.3.0",
"@types/colors": "^1.2.1",
"@types/express": "^4.17.12",
"@types/http-proxy-middleware": "^1.0.0",
"@types/node": "^15.12.5",
"@types/yaml": "^1.9.7",
"@types/yargs": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.23.4",
"ts-node": "^10.0.0",
"tslint": "^6.1.3",
"typescript": "^4.3.4"
},
"dependencies": {
"@types/listr": "^0.14.3",
"chalk": "^2.4.2",
"cli-table": "^0.3.6",
"colors": "^1.4.0",
"dotenv": "^10.0.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"http-proxy-middleware": "^2.0.0",
"listr": "^0.14.3",
"path": "^0.12.7",
"yaml": "^1.10.2",
"yargs": "^17.0.1"
}
}