-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 923 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 923 Bytes
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
{
"name": "generator-express-es6",
"version": "1.2.0",
"description": "Yeoman generator for Express.js",
"homepage": "",
"author": {
"name": "Andrei Tretyakov",
"email": "andrei.tretyakov@gmail.com"
},
"files": [
"generators"
],
"main": "generators/app/index.js",
"keywords": [
"boilerplate",
"expressjs",
"es6",
"yeoman-generator"
],
"type": "module",
"dependencies": {
"glob": "^11.0.1",
"lodash-es": "^4.17.21",
"mkdirp": "^3.0.1",
"yeoman-generator": "^7.4.0",
"yosay": "^3.0.0"
},
"repository": "ofkindness/generator-express-es6",
"scripts": {
"lint": "eslint ."
},
"license": "MIT",
"devDependencies": {
"@babel/eslint-parser": "^7.26.8",
"eslint": "9.21.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-security": "^3.0.1"
}
}