-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 998 Bytes
/
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
{
"name": "express-pprof-middleware",
"version": "0.0.8",
"description": "Express middleware that exposes pprof endpoints for easy profiling",
"main": "index.js",
"devDependencies": {
"chai": "~3.5.0",
"co-mocha": "1.2.2",
"coveralls": "3.0.2",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"express": "^4.14.0",
"is-path-in-cwd": "^2.0.0",
"istanbul": "~0.4.2",
"mocha": "5.2.0",
"mocha-lcov-reporter": "~1.0.0"
},
"scripts": {
"test": "mocha --timeout 5000",
"lint": "eslint .",
"lint:fix": "eslint --fix --ext .js .",
"start": "npm test"
},
"keywords": [
"express",
"pprof",
"middleware",
"heap",
"profiling"
],
"homepage": "https://github.com/teslamotors/express-pprof-middleware",
"author": "Leon Li",
"license": "MIT",
"dependencies": {
"pprof": "^3.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/teslamotors/express-pprof-middleware.git"
}
}