-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
{
"name": "loopback4-example-swagger",
"version": "1.0.0",
"description": "Generate model from swagger",
"main": "dist/index.js",
"engines": {
"node": ">=8"
},
"scripts": {
"tsc": "tsc",
"build": "lb-tsc && lb-tslint",
"test": "npm run build && mocha \"./dist/test/**/*.test.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/strongloop/loopback4-example-getting-started.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/strongloop/loopback4-example-getting-started/issues"
},
"homepage": "https://github.com/strongloop/loopback4-example-getting-started#readme",
"dependencies": {
"@loopback/core": "^4.0.0-alpha.16",
"@loopback/repository": "^4.0.0-alpha.10",
"@loopback/rest": "^4.0.0-alpha.3",
"@types/sinon": "^2.3.6",
"async": "^2.6.0",
"fs-promise": "^2.0.3",
"glob": "^7.1.2",
"lodash": "^4.17.4",
"oai-ts-core": "^0.2.5",
"openapi3-ts": "^0.6.2",
"p-iteration": "^1.1.5",
"sinon": "^4.0.1"
},
"devDependencies": {
"@loopback/build": "^4.0.0-alpha.3",
"@loopback/testlab": "^4.0.0-alpha.9",
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.53",
"mocha": "^4.0.1",
"typescript": "^2.5.2"
}
}