-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.87 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
{
"name": "generator-koa2-simple-api-generator",
"version": "1.0.0",
"description": "Yeoman generator to create a simple base structure for api rest based in koa2 framework.",
"homepage": "https://github.com/cristopher1/generator-koa2-simple-api-generator",
"type": "module",
"main": "./dist/generators/app/index.js",
"types": "./dist/types/generators/app/index.d.ts",
"exports": {
".": {
"types": "./dist/types/generators/app/index.d.ts",
"import": "./dist/generators/app/index.js"
},
"./app": {
"types": "./dist/types/generators/app/index.d.ts",
"import": "./dist/generators/app/index.js"
},
"./docker": {
"types": "./dist/types/generators/docker/index.d.ts",
"import": "./dist/generators/docker/index.js"
},
"./docker_compose": {
"types": "./dist/types/generators/docker_compose/index.d.ts",
"import": "./dist/generators/docker_compose/index.js"
}
},
"keywords": [
"yeoman-generator",
"koa2",
"api",
"rest",
"eslint",
"prettier",
"es6",
"husky"
],
"files": [
"dist"
],
"author": {
"name": "Cristopher Jiménez Meza",
"email": "",
"url": "https://github.com/cristopher1/generator-koa2-simple-api-generator"
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10",
"@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"@faker-js/faker": "^8.0.2",
"@jest/globals": "^29.7.0",
"cross-env": "^7.0.3",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.2",
"prettier-plugin-jsdoc": "^1.1.1",
"readme-md-generator": "^1.0.0",
"rimraf": "^5.0.1",
"typescript": "^5.2.2",
"yeoman-assert": "^3.1.1",
"yeoman-environment": "^4.0.0",
"yeoman-test": "^8.2.0"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.22.11",
"chalk": "^2.1.0",
"core-js": "^3.32.1",
"generator-license": "^5.6.0",
"yeoman-generator": "^6.0.1",
"yosay": "^2.0.2"
},
"scripts": {
"init:husky": "husky install",
"documentation:create": "npx readme-md-generator -y",
"init": "npm run init:husky",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"format:build-stage": "prettier --check generators",
"format:build-stage:fix": "prettier --write generators",
"lint": "eslint -c .eslintrc.yml --no-eslintrc --ext .js,.mjs .",
"lint:fix": "npm run lint -- --fix",
"lint:build-stage": "eslint -c .eslintrc.yml --no-eslintrc --ext .js,.mjs generators",
"lint:build-stage:fix": "npm run lint:build-stage -- --fix",
"build:clean": "rimraf dist",
"build:tsc": "tsc",
"build:es6": "cross-env NODE_ENV=buildESmodules npx babel generators --config-file ./babel.config.json --out-dir dist/generators --ignore '/**/templates/' --copy-files --include-dotfiles",
"prebuild": "npm run lint:build-stage && npm run format:build-stage:fix && npm run build:clean",
"build": "npm run build:tsc && npm run build:es6",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --verbose",
"commitlint": "npx commitlint --edit",
"lint-staged": "npx lint-staged",
"prepublishOnly": "npm run build",
"quality-check": "npm run format && npm run lint && npm run test"
},
"repository": {
"url": "https://github.com/cristopher1/generator-koa2-simple-api-generator"
},
"bugs": {
"url": "https://github.com/cristopher1/generator-koa2-simple-api-generator/issues"
},
"license": "MIT"
}