forked from strongloop/generator-loopback
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.14 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.14 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
{
"name": "generator-loopback",
"version": "1.7.0",
"description": "Yeoman generator for LoopBack",
"license": {
"name": "Dual MIT/StrongLoop",
"url": "https://github.com/strongloop/generator-loopback/blob/master/LICENSE"
},
"main": "app/index.js",
"repository": "strongloop/generator-loopback",
"author": {
"name": "Miroslav Bajtoš",
"email": "miroslav@strongloop.com",
"url": "http://strongloop.com/"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"pretest": "jshint .",
"test": "mocha -R spec && mocha -R spec test/end-to-end",
"testdb": "TEST_SLOW=1 mocha -R spec test/end-to-end"
},
"keywords": [
"yeoman-generator",
"loopback",
"strongloop"
],
"dependencies": {
"async": "^0.9.0",
"chalk": "^0.5.0",
"debug": "^2.1.0",
"inflection": "^1.3.8",
"loopback-swagger": "^2.0.0",
"loopback-workspace": "^3.6.0",
"request": "^2.47.0",
"yeoman-generator": "^0.18.1",
"yosay": "^1.0.0"
},
"devDependencies": {
"chai": "^1.10.0",
"fs-extra": "^0.12.0",
"jshint": "^2.5.8",
"mocha": "^2.0.1",
"strong-cached-install": "^1.1.0"
}
}