-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.33 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
{
"name": "express-express",
"description": "Express' application generator with brunch.io and app reloading",
"version": "0.1.6",
"author": {
"name": "Kevin Swope",
"email": "[email protected]"
},
"homepage": "https://github.com/kswope/express-express",
"repository": {
"type": "git",
"url": "[email protected]:kswope/express-express.git"
},
"license": "MIT",
"dependencies": {
"commander": "2.11.0",
"ejs": "2.5.7",
"fs-extra": "^4.0.2",
"mkdirp": "0.5.1",
"sorted-object": "2.0.1"
},
"main": "bin/express-cli.js",
"preferGlobal": true,
"bin": {
"express-express": "./bin/express-cli.js"
},
"devDependencies": {
"eslint": "3.19.0",
"eslint-config-standard": "10.2.1",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-node": "5.2.0",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-standard": "3.0.1",
"mocha": "2.5.3",
"rimraf": "2.5.4",
"supertest": "1.2.0",
"tree-kill": "1.2.0",
"validate-npm-package-name": "2.2.2"
},
"engines": {
"node": ">= 0.10"
},
"files": [
"LICENSE",
"bin/",
"templates/",
"brunch.png",
"express-express.svg"
],
"scripts": {
"lint": "eslint .",
"test": "mocha --reporter spec --bail --check-leaks test/",
"test-ci": "mocha --reporter spec --check-leaks test/"
}
}