forked from ironhack/generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.32 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
{
"name": "iron-generator",
"description": "Express' application generator",
"version": "4.14.3",
"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]>",
"Josh Alexy <[email protected]>",
"Nizar Khalife <[email protected]>"
],
"keywords": [
"express",
"framework",
"sinatra",
"web",
"rest",
"restful",
"router",
"app",
"api"
],
"repository": "jalexy12/generator",
"license": "MIT",
"dependencies": {
"commander": "2.9.0",
"mkdirp": "0.5.1",
"sorted-object": "2.0.1"
},
"main": "bin/express",
"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/"
}
}