-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.67 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.67 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "express-21c",
"description": "Express Module' application generator",
"version": "21.5.7-1",
"author": "Bosco John <callor@callor.com>",
"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": "git+https://github.com/callor/Callor-express-Template.git"
},
"homepage": "https://www.callor.com",
"license": "(MIT OR Apache-2.0)",
"dependencies": {
"commander": "^14.0.0",
"ejs": "^3.1.10",
"minimatch": "^10.0.3",
"minimist": "*",
"mkdirp": "^3.0.1",
"path": "^0.12.7",
"sorted-object": "^2.0.1"
},
"main": "bin/express-21c.js",
"preferGlobal": true,
"bin": {
"express": "bin/express-21c.js"
},
"devDependencies": {
"eslint": "^9.30.1",
"mocha": "^11.7.1",
"rimraf": "^6.0.1",
"supertest": "^7.1.1",
"tree-kill": "^1.2.2",
"uid-safe": "^2.1.5",
"validate-npm-package-name": "^6.0.1"
},
"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"
}
}