-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.35 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
{
"name": "axel-cli",
"version": "0.35.1",
"author": "[email protected] @enyosolutions",
"bin": {
"axel": "./bin/run"
},
"bugs": "https://github.com/enyosolutions-team/axel-cli/issues",
"dependencies": {
"@oclif/command": "^1.8.20",
"@oclif/config": "^1.18.6",
"@oclif/parser": "^3.8.9",
"@oclif/plugin-help": "^2",
"cli-ux": "^5.4.5",
"cosmiconfig": "^7.0.0",
"fs-extra": "^9.0.1",
"inquirer": "^7.1.0",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"mysql": "^2.18.1",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"replace": "^1.1.5",
"sequelize": "^6.26.0",
"sequelize-auto": "^0.8.8",
"tslib": "^1",
"unzipper": "^0.10.11"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@oclif/dev-cli": "^1",
"@types/chalk": "^2.2.0",
"@types/fs-extra": "^8.1.0",
"@types/glob": "^7.1.3",
"@types/inquirer": "^9.0.3",
"@types/lodash": "^4.14.150",
"@types/node": "^13.13.2",
"@types/through": "^0.0.30",
"eslint": "^5.13",
"eslint-config-oclif": "^3.1",
"eslint-config-oclif-typescript": "^0.1",
"globby": "^11",
"json-schema-faker": "^0.5.0-rcv.24",
"oclif": "^2.0.1",
"ts-node": "^8",
"tsup": "^6.5.0",
"typescript": "^4.9.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/enyosolutions-team/axel-cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/api.js",
"oclif": {
"commands": "./lib/commands",
"bin": "axel",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "enyosolutions-team/axel-cli",
"scripts": {
"build": "tsup --no-splitting && npm run copy:templates",
"copy:templates": "cp -r src/commands/generate/templates lib/commands/generate && cp -r src/commands/generate/templates lib/",
"postpack": "rm -f oclif.manifest.json && npm run copy:templates",
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm -rf lib && tsup && npm run copy:templates && oclif-dev manifest && oclif-dev readme",
"test": "echo 'please add tests'",
"lint": "eslint . --ext .ts --config .eslintrc",
"lint:fix": "npx eslint ./src/**/*.ts --fix",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/api.d.ts"
}