-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 947 Bytes
/
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
{
"name": "automate-crud",
"description": "CLI tool which accepts db schema and automatically generates API( Express, Mongo ) and an AdminPanel( React, Redux ) to perform CRUD ops.",
"version": "0.0.0",
"author": "Naman @NamanAulakh",
"repository": {
"type": "git",
"url": "https://github.com/NamanAulakh/automate-crud"
},
"bin": {
"mynewcli": "./bin/run"
},
"dependencies": {
"@oclif/command": "^1.5.10",
"@oclif/config": "^1.12.6",
"@oclif/plugin-help": "^2.1.6",
"cli-ux": "^5.1.0",
"lodash": "^4.17.11",
"string-template": "^1.0.0"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/src"
],
"keywords": [
"oclif"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"bin": "mynewcli"
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
},
"scripts": {
"posttest": "eslint .",
"test": "echo NO TESTS"
}
}