forked from loopbackio/loopback-next
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.29 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.29 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
48
49
50
51
{
"name": "@loopback/testlab",
"version": "1.0.3",
"description": "A collection of test utilities we use to write LoopBack tests.",
"engines": {
"node": ">=8.9"
},
"scripts": {
"build": "lb-tsc es2017 --outDir dist",
"build:apidocs": "lb-apidocs",
"clean": "lb-clean loopback-testlab*.tgz dist package api-docs",
"pretest": "npm run build",
"test": "lb-mocha \"dist/test\"",
"verify": "npm pack && tar xf loopback-testlab*.tgz && tree package && npm run clean"
},
"author": "IBM",
"copyright.owner": "IBM Corp.",
"license": "MIT",
"dependencies": {
"@types/express": "^4.16.0",
"@types/fs-extra": "^5.0.4",
"@types/shot": "^4.0.0",
"@types/sinon": "^7.0.2",
"@types/supertest": "^2.0.7",
"express": "^4.16.4",
"fs-extra": "^7.0.1",
"oas-validator": "^2.0.0",
"shot": "^4.0.7",
"should": "^13.2.3",
"sinon": "^7.2.2",
"supertest": "^3.3.0"
},
"devDependencies": {
"@loopback/build": "^1.1.0",
"@loopback/tslint-config": "^1.0.0",
"@types/node": "^10.11.2"
},
"files": [
"README.md",
"index.js",
"index.d.ts",
"dist/src",
"dist/index*",
"should-as-function.d.ts",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/strongloop/loopback-next.git"
}
}