UNPKG

1.61 kBJSONView Raw
1{
2 "name": "express-generator",
3 "description": "Express' application generator",
4 "version": "4.16.1",
5 "author": "TJ Holowaychuk <tj@vision-media.ca>",
6 "contributors": [
7 "Aaron Heckmann <aaron.heckmann+github@gmail.com>",
8 "Ciaran Jessup <ciaranj@gmail.com>",
9 "Douglas Christopher Wilson <doug@somethingdoug.com>",
10 "Guillermo Rauch <rauchg@gmail.com>",
11 "Jonathan Ong <me@jongleberry.com>",
12 "Roman Shtylman <shtylman+expressjs@gmail.com>"
13 ],
14 "keywords": [
15 "express",
16 "framework",
17 "sinatra",
18 "web",
19 "rest",
20 "restful",
21 "router",
22 "app",
23 "api"
24 ],
25 "repository": "expressjs/generator",
26 "license": "MIT",
27 "dependencies": {
28 "commander": "2.15.1",
29 "ejs": "2.6.1",
30 "minimatch": "3.0.4",
31 "mkdirp": "0.5.1",
32 "sorted-object": "2.0.1"
33 },
34 "main": "bin/express-cli.js",
35 "preferGlobal": true,
36 "bin": {
37 "express": "./bin/express-cli.js"
38 },
39 "devDependencies": {
40 "eslint": "5.16.0",
41 "eslint-config-standard": "12.0.0",
42 "eslint-plugin-import": "2.17.2",
43 "eslint-plugin-node": "8.0.1",
44 "eslint-plugin-promise": "4.1.1",
45 "eslint-plugin-standard": "4.0.0",
46 "mocha": "6.1.4",
47 "rimraf": "2.6.3",
48 "supertest": "4.0.2",
49 "tree-kill": "1.2.1",
50 "uid-safe": "2.1.5",
51 "validate-npm-package-name": "3.0.0"
52 },
53 "engines": {
54 "node": ">= 0.10"
55 },
56 "files": [
57 "LICENSE",
58 "bin/",
59 "templates/"
60 ],
61 "scripts": {
62 "lint": "eslint .",
63 "test": "mocha --reporter spec --bail --check-leaks test/",
64 "test-ci": "mocha --reporter spec --check-leaks test/"
65 }
66}