@anthonylzq/simba.js 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "@anthonylzq/simba.js",
3
+ "version": "1.4.0",
4
+ "description": "set up a modern backend app by running one command",
5
+ "main": "lib/index.js",
6
+ "directories": {
7
+ "example": "example",
8
+ "lib": "lib"
9
+ },
10
+ "scripts": {
11
+ "service": "node ./bin",
12
+ "release": "standard-version",
13
+ "test": "npm run rm && node ./bin -a AnthonyLzq -e sluzquinosa@uni.pe -N example -D 'This is a test'",
14
+ "lint": "eslint --ext js lib/ --fix",
15
+ "rm": "if [ -d \"example\" ]; then rm -rf example; fi"
16
+ },
17
+ "bin": {
18
+ "simba": "./bin/index.js"
19
+ },
20
+ "keywords": [
21
+ "TypeScript",
22
+ "cli",
23
+ "console",
24
+ "term",
25
+ "terminal",
26
+ "tool",
27
+ "tty",
28
+ "utility"
29
+ ],
30
+ "author": "AnthonyLzq",
31
+ "license": "MIT",
32
+ "dependencies": {
33
+ "cli-progress": "^3.9.1",
34
+ "colors": "^1.4.0",
35
+ "readline-sync": "^1.4.10",
36
+ "underscore": "^1.13.1",
37
+ "yargs": "^17.3.0"
38
+ },
39
+ "devDependencies": {
40
+ "eslint": "^7.32.0",
41
+ "eslint-config-prettier": "^8.3.0",
42
+ "eslint-config-standard": "^16.0.3",
43
+ "eslint-plugin-import": "^2.25.3",
44
+ "eslint-plugin-node": "^11.1.0",
45
+ "eslint-plugin-prettier": "^4.0.0",
46
+ "standard-version": "^9.3.2"
47
+ },
48
+ "repository": {
49
+ "type": "git",
50
+ "url": "git+https://github.com/AnthonyLzq/simba.js.git"
51
+ },
52
+ "bugs": {
53
+ "url": "https://github.com/AnthonyLzq/simba.js/issues"
54
+ },
55
+ "homepage": "https://github.com/AnthonyLzq/simba.js#readme"
56
+ }