-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.46 KB
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
{
"name": "generate-express",
"description": "Express Generator with es6+/typescript and choice of database.",
"version": "4.0.0",
"author": "Evan Klemen <ejklemen+exgen@gmail.com>",
"contributors": [
"Evan Klemen <ejklemen+exgen@gmail.com>",
"Sujil Maharjan <maharjansujil+exgen@gmail.com>"
],
"keywords": [
"express",
"framework",
"api",
"es6",
"mongo",
"sequelize",
"generator",
"redis",
"typescript"
],
"repository": "eklemen/generate-express",
"license": "MIT",
"dependencies": {
"chalk": "^4.0.0",
"ejs": "2.6.1",
"inquirer": "^7.1.0",
"lodash.kebabcase": "^4.1.1",
"minimatch": "3.0.4",
"mkdirp": "0.5.1",
"rimraf": "^2.6.3",
"sorted-object": "2.0.1"
},
"main": "bin/express-cli.js",
"preferGlobal": true,
"bin": {
"exgen": "./bin/express-cli.js"
},
"devDependencies": {
"eslint": "5.16.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-standard": "4.0.0",
"jest": "^25.4.0",
"mock-stdin": "^1.0.0",
"supertest": "^4.0.2",
"tree-kill": "^1.2.2",
"uid-safe": "2.1.5",
"validate-npm-package-name": "3.0.0"
},
"engines": {
"node": ">= 8.0"
},
"files": [
"LICENSE",
"bin/",
"templates/",
"utils/"
],
"scripts": {
"lint": "eslint .",
"test": "jest",
"test:watch": "jest --watch"
}
}