-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.86 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
{
"name": "express-21c",
"description": "Express Module' application generator",
"version": "21.3.24",
"author": "Bosco John <[email protected]>",
"install": "npm install -g express-21c",
"exec": "npx express-21c [project] or express [project]",
"type": "module",
"keywords": [
"javascript",
"vanila",
"nodejs",
"es5",
"es6",
"ecma-script,",
"ECMAscript,",
"express",
"express-generator",
"framework",
"web",
"rest",
"restful",
"router",
"app",
"api",
"module",
"import",
"pug",
"mysql",
"sequelize"
],
"repository": {
"type": "git",
"url": "https://github.com/callor/Callor-express-Template.git"
},
"homepage": "https://www.callor.com",
"license": "(MIT OR Apache-2.0)",
"dependencies": {
"commander": "^9.4.1",
"ejs": "^3.1.9",
"minimatch": "^5.1.0",
"minimist": "*",
"mkdirp": "^1.0.4",
"path": "^0.12.7",
"sorted-object": "^2.0.1"
},
"main": "bin/express-21c.js",
"preferGlobal": true,
"bin": {
"express": "./bin/express-21c.js"
},
"devDependencies": {
"eslint": "^8.26.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^10.1.0",
"rimraf": "^3.0.2",
"supertest": "^6.3.1",
"tree-kill": "^1.2.2",
"uid-safe": "^2.1.5",
"validate-npm-package-name": "^5.0.0"
},
"engines": {
"node": ">= 12.0"
},
"files": [
"LICENSE",
"package.json",
"bin/",
"templates/",
"config/",
"modules/"
],
"scripts": {
"lint": "eslint .",
"test": "mocha --reporter spec --bail --check-leaks test/",
"test-ci": "mocha --reporter spec --check-leaks test/",
"exec": "node ./bin/express-21c.js test --pug --sequelize"
}
}