-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
40 lines (40 loc) · 907 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
{
"name": "thetool",
"version": "0.5.1",
"description": "thetool is a CLI tool to capture different cpu, memory and other profiles for your node app in Chrome DevTools friendly format",
"main": "index.js",
"engines": {
"node": ">=10.0.0"
},
"bin": {
"thetool": "./index.js"
},
"scripts": {
"test": "npm run lint && jest ./test",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ak239/thetool.git"
},
"keywords": [
"profiler",
"cpu",
"memory",
"coverage"
],
"author": "ak239spb@gmail.com",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ak239/thetool/issues"
},
"homepage": "https://github.com/ak239/thetool#readme",
"dependencies": {
"update-notifier": "^3.0.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"jest": "^24.8.0",
"lodash": "^4.17.14"
}
}