UNPKG

1.46 kBJSONView Raw
1{
2 "name": "express-generator",
3 "description": "Express' application generator",
4 "version": "4.15.0",
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.9.0",
29 "ejs": "2.5.6",
30 "mkdirp": "0.5.1",
31 "sorted-object": "2.0.1"
32 },
33 "main": "bin/express-cli.js",
34 "preferGlobal": true,
35 "bin": {
36 "express": "./bin/express-cli.js"
37 },
38 "devDependencies": {
39 "eslint": "3.18.0",
40 "eslint-config-standard": "7.1.0",
41 "eslint-plugin-promise": "3.5.0",
42 "eslint-plugin-standard": "2.1.1",
43 "mocha": "2.5.3",
44 "rimraf": "2.5.4",
45 "supertest": "1.2.0",
46 "validate-npm-package-name": "2.2.2"
47 },
48 "engines": {
49 "node": ">= 0.10"
50 },
51 "files": [
52 "LICENSE",
53 "bin/",
54 "templates/"
55 ],
56 "scripts": {
57 "lint": "eslint .",
58 "test": "mocha --reporter spec --bail --check-leaks test/",
59 "test-ci": "mocha --reporter spec --check-leaks test/"
60 }
61}