-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
129 lines (129 loc) · 3.03 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@panacloud/cli",
"version": "0.0.11",
"description": "panacloud cli",
"author": "Muhammad Hasan @muh_hasan",
"bin": {
"panacloud": "bin/run"
},
"bugs": {
"url": "https://github.com/panacloud/cli/issues"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.0.3",
"@graphql-tools/schema": "^8.2.0",
"@oclif/command": "^1.8.0",
"@oclif/config": "^1",
"@oclif/plugin-help": "^3",
"@types/inquirer": "^7.3.3",
"@types/valid-url": "^1.0.3",
"await-exec": "^0.1.2",
"axios": "^0.21.4",
"chalk": "^4.1.1",
"chokidar": "^2.0.4",
"codemaker": "^1.40.0",
"configstore": "3.1.5",
"copyfiles": "^2.4.1",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"fs": "^0.0.1-security",
"fs-extra": "^10.0.0",
"graphql": "^15.6.0",
"graphql-schema-utilities": "^1.1.3",
"graphql-to-json-converter": "^1.2.0",
"hidefile": "^3.0.0",
"inquirer": "^8.1.2",
"isomorphic-git": "^1.10.3",
"lodash": "^4.17.21",
"log-symbols": "^4.0.0",
"make-dir": "^3.1.0",
"open": "^8.2.1",
"ora": "^5.4.1",
"path": "^0.12.7",
"prettier": "^2.3.2",
"random-name": "^0.1.2",
"semver": "^7.3.5",
"supertest": "^6.1.6",
"tslib": "^1",
"typescript": "^3.9.10",
"valid-url": "^1.0.9",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"@types/chai": "^4.2.22",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/hidefile": "^3.0.0",
"@types/mocha": "^5",
"@types/node": "^16.11.6",
"@types/random-name": "^0.1.0",
"chai": "^4",
"eslint": "^5.13",
"eslint-config-oclif": "^3.1",
"eslint-config-oclif-typescript": "^0.1",
"globby": "^10.0.2",
"mocha": "^5",
"nyc": "^14",
"rimraf": "^3.0.2",
"ts-node": "^8",
"typescript": "^3.9.10"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"keywords": [
"code generator",
"code generation",
"cli",
"oclif",
"panacloud",
"panacloud cli",
"cdk",
"aws"
],
"license": "MIT",
"main": "lib/index.js",
"homepage": "https://github.com/panacloud/cli",
"oclif": {
"commands": "./lib/commands",
"bin": "panacloud",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/panacloud/cli.git"
},
"publishConfig": {
"access": "public",
"branches": [
"master"
]
},
"release": {
"branches": [
"master"
]
},
"scripts": {
"postpack": "rimraf oclif.manifest.json",
"copy-files": "copyfiles -a -u 1 \"./src/lib/api/template/**/*\" \"./src/utils/*.graphql\" lib",
"prepack": "rimraf lib && tsc -b && oclif-dev manifest && yarn copy-files",
"test": "ts-node test/test-scripts/script.ts",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
}
}