-
Notifications
You must be signed in to change notification settings - Fork 175
/
Copy pathpackage.json
121 lines (121 loc) · 3.23 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@mean-expert/loopback-sdk-builder",
"version": "2.3.1",
"description": "Tool for auto-generating Software Development Kits (SDKs) for LoopBack",
"bin": {
"lb-sdk": "bin/lb-sdk"
},
"main": "index.js",
"scripts": {
"prepublish": "",
"test": "npm run load:api & npm run test:all",
"pretest": "cd tests/fireloop && npm install && npm install ../../ && npm run build:sdk",
"pretest:ng2webORM": "cd tests/fireloop && npm run build:sdk:ng2webORM",
"pretest:ng2webNGRX": "cd tests/fireloop && npm run build:sdk:ng2webNGRX",
"load:api": "cd tests/fireloop && NODE_ENV=ci node server/server",
"test:ng2web": "cd tests/ng2web && npm test",
"test:ng2webNGRX": "cd tests/ng2web && npm run test:ngrx",
"test:ng2webORM": "cd tests/ng2web && npm run test:orm",
"test:react-web": "cd tests/react-web && npm test",
"test:all": "npm run test:ng2web && npm run test:react-web && npm run test:ng2webNGRX && npm run test:ng2webORM"
},
"repository": {
"type": "git",
"url": "git://github.com/mean-expert-official/loopback-sdk-builder.git"
},
"keywords": [
"loopback",
"cli",
"angular",
"angular2",
"nativescript",
"{N}"
],
"author": {
"name": "Jonathan Casarrubias",
"email": "[email protected]",
"url": "http://mean.expert"
},
"contributors": [
{
"name": "João Ribeiro",
"email": "[email protected]",
"url": "http://jonnybgod.ghost.io"
},
{
"name": "Nikolay Matiushenkov",
"email": "[email protected]",
"url": "https://github.com/mnvx"
},
{
"name": "Sylvain Dumont",
"email": "[email protected]",
"url": "https://www.weboaks.com"
},
{
"name": "Yonggang Luo",
"email": "[email protected]",
"url": "https://github.com/lygstate"
},
{
"name": "Chris Tunbridge",
"email": "[email protected]",
"url": "https://github.com/Destreyf"
},
{
"name": "Miguel Serrano",
"email": "[email protected]",
"url": "https://github.com/Serranom4"
},
{
"name": "Julien Ledun",
"email": "[email protected]",
"url": "https://github.com/jledun"
},
{
"name": "Paul Robinson",
"email": "[email protected]",
"url": "http://nextfaze.com"
},
{
"name": "Corentin Hatte",
"email": "[email protected]",
"url": "https://github.com/viki53"
},
{
"name": "Fabian Scheidt",
"email": "[email protected]",
"url": "https://github.com/fabianscheidt"
},
{
"name": "Michał Frączkiewicz",
"email": "[email protected]",
"url": "https://github.com/bonaventoora"
}
],
"files": [
"bin",
"lib",
"index.js",
"CHANGELOG.md",
"LICENSE.md",
"README.md"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mean-expert-official/loopback-sdk-builder/issues"
},
"dependencies": {
"chalk": "1.1.3",
"ejs": "1.0",
"extfs": "0.0.7",
"mkdirp": "0.5.1",
"optimist": "0.6.1",
"rimraf": "^2.6.1",
"rxjs": "^5.5.9",
"semver": "^5.4.1",
"underscore": "^1.8.3",
"underscore.inflections": "^0.2.1"
},
"devDependencies": {}
}