-
-
Notifications
You must be signed in to change notification settings - Fork 550
/
package.json
66 lines (66 loc) · 1.57 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
{
"name": "express-generator",
"description": "Express' application generator",
"version": "4.16.1",
"author": "TJ Holowaychuk <[email protected]>",
"contributors": [
"Aaron Heckmann <[email protected]>",
"Ciaran Jessup <[email protected]>",
"Douglas Christopher Wilson <[email protected]>",
"Guillermo Rauch <[email protected]>",
"Jonathan Ong <[email protected]>",
"Roman Shtylman <[email protected]>"
],
"keywords": [
"express",
"framework",
"sinatra",
"web",
"rest",
"restful",
"router",
"app",
"api"
],
"repository": "expressjs/generator",
"license": "MIT",
"dependencies": {
"ejs": "2.6.2",
"minimatch": "3.0.4",
"minimist": "1.2.5",
"mkdirp": "0.5.1",
"sorted-object": "2.0.1"
},
"main": "bin/express-cli.js",
"preferGlobal": true,
"bin": {
"express": "./bin/express-cli.js"
},
"devDependencies": {
"eslint": "7.32.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.2.0",
"eslint-plugin-standard": "4.1.0",
"mocha": "9.1.3",
"rimraf": "3.0.2",
"supertest": "6.1.4",
"tree-kill": "1.2.2",
"uid-safe": "2.1.5",
"validate-npm-package-name": "3.0.0"
},
"engines": {
"node": ">= 0.10"
},
"files": [
"LICENSE",
"bin/",
"templates/"
],
"scripts": {
"lint": "eslint .",
"test": "mocha --reporter spec --bail --check-leaks test/",
"test-ci": "mocha --reporter spec --check-leaks test/"
}
}