forked from jalexy12/generator
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.55 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.55 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
{
"name": "ironhack_generator",
"description": "Express' application generator by Ironhack",
"version": "1.2.0",
"author": "TJ Holowaychuk <tj@vision-media.ca>",
"contributors": [
"Aaron Heckmann <aaron.heckmann+github@gmail.com>",
"Ciaran Jessup <ciaranj@gmail.com>",
"Douglas Christopher Wilson <doug@somethingdoug.com>",
"Guillermo Rauch <rauchg@gmail.com>",
"Jonathan Ong <me@jongleberry.com>",
"Roman Shtylman <shtylman+expressjs@gmail.com>",
"Josh Alexy <jalexy12@gmail.com>",
"Nizar Khalife <khalifenizar@gmail.com>",
"Fer Martin <fer@ironhack.com>",
"Victor Arza <papu.arza@gmail.com>",
"Marc Pomar <marc.pomar@ironhack.com>",
"Maxence Bouret <maxence@ironhack.com>"
],
"keywords": [
"express",
"framework",
"web",
"rest",
"restful",
"router",
"app",
"api",
"ironhack"
],
"repository": "ironhack/generator",
"license": "MIT",
"dependencies": {
"commander": "2.11.0",
"fs-extra": "^4.0.2",
"chalk": "^2.3.0",
"sorted-object": "2.0.1",
"mkdirp": "0.5.1"
},
"main": "bin/irongenerate",
"preferGlobal": true,
"bin": {
"irongenerate": "./bin/irongenerate"
},
"devDependencies": {
"mocha": "2.5.3",
"rimraf": "2.5.4",
"supertest": "1.2.0",
"validate-npm-package-name": "2.2.2"
},
"engines": {
"node": ">= 0.10"
},
"files": [
"LICENSE",
"bin/",
"templates/"
],
"scripts": {
"test": "mocha --reporter spec --bail --check-leaks test/",
"test-ci": "mocha --reporter spec --check-leaks test/"
}
}