forked from loopbackio/loopback-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.5 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": "@loopback/openapi-v3",
"version": "1.1.3",
"description": "Processes openapi v3 related metadata",
"engines": {
"node": ">=8.9"
},
"devDependencies": {
"@loopback/build": "^1.0.1",
"@loopback/openapi-spec-builder": "^1.0.1",
"@loopback/repository": "^1.0.6",
"@loopback/testlab": "^1.0.1",
"@types/debug": "0.0.30",
"@types/lodash": "^4.14.106",
"@types/node": "^10.11.2"
},
"scripts": {
"build:apidocs": "lb-apidocs",
"build": "lb-tsc es2017 --outDir dist",
"clean": "lb-clean loopback-openapi-v3*.tgz dist package",
"integration": "lb-mocha \"dist/test/integration/**/*.js\"",
"pretest": "npm run build",
"test": "lb-mocha \"dist/test/unit/**/*.js\" \"dist/test/integration/**/*.js\"",
"unit": "lb-mocha \"dist/test/unit/**/*.js\"",
"verify": "npm pack && tar xf loopback-openapi-v3*.tgz && tree package && npm run clean"
},
"author": "IBM",
"copyright.owner": "IBM Corp.",
"license": "MIT",
"keywords": [
"Swagger",
"OpenAPI Spec",
"TypeScript"
],
"files": [
"README.md",
"index.js",
"index.d.ts",
"dist/src",
"dist/index*",
"src"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/strongloop/loopback-next.git"
},
"dependencies": {
"@loopback/context": "^1.2.0",
"@loopback/openapi-v3-types": "^1.0.1",
"@loopback/repository-json-schema": "^1.2.3",
"debug": "^4.0.1",
"lodash": "^4.17.5"
}
}