forked from loopbackio/loopback-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.51 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
{
"name": "@loopback/benchmark",
"version": "1.3.26",
"private": true,
"description": "Benchmarks measuring performance of our framework.",
"keywords": [
"loopback",
"performance",
"benchmark"
],
"main": "index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "lb-tsc",
"clean": "lb-clean dist *.tsbuildinfo",
"pretest": "npm run clean && npm run build",
"test": "lb-mocha \"dist/__tests__/**/*.js\"",
"prestart": "npm run build",
"benchmark:routing": "node ./dist/rest-routing/routing-table",
"start": "node ."
},
"author": "IBM Corp.",
"license": "MIT",
"files": [
"README.md",
"index.js",
"index.d.ts",
"dist",
"src",
"!*/__tests__"
],
"dependencies": {
"@loopback/example-todo": "^2.0.0",
"@loopback/openapi-spec-builder": "^1.3.1",
"@loopback/rest": "^2.0.0",
"@types/byline": "^4.2.31",
"@types/debug": "^4.1.5",
"@types/request-promise-native": "^1.0.17",
"autocannon": "^4.6.0",
"axios": "^0.19.2",
"byline": "^5.0.0",
"debug": "^4.1.1",
"path-to-regexp": "^6.1.0"
},
"devDependencies": {
"@loopback/build": "^3.1.1",
"@loopback/testlab": "^1.10.3",
"@types/autocannon": "^4.1.0",
"@types/mocha": "^7.0.1",
"@types/node": "^10.17.15",
"mocha": "^7.0.1",
"p-event": "^4.1.0",
"source-map-support": "^0.5.16"
},
"repository": {
"type": "git",
"url": "https://github.com/strongloop/loopback-next.git",
"directory": "benchmark"
}
}