-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
53 lines (53 loc) · 1.45 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
{
"name": "@clinic/heap-profiler",
"version": "5.0.0",
"description": "Programmable interface to Clinic.js Heap Profiler",
"repository": "https://github.com/clinicjs/node-clinic-heap-profiler",
"main": "src/index.js",
"scripts": {
"visualize-watch": "node debug/visualize-watch.js",
"visualize-all": "node debug/visualize-all.js",
"test": "npm run lint && tap",
"test:file": "standard | snazzy && tap --no-cov",
"ci-lint": "npm run lint",
"ci-test-cov": "tap",
"ci-test-no-cov": "tap --no-cov",
"lint": "standard --fix | snazzy"
},
"tap": {
"nyc-arg": [
"--exclude=test/*.js",
"--exclude=visualizer/d3.js",
"--exclude=visualizer/data-tree.js",
"--exclude=visualizer/no-data-node.js"
]
},
"author": "",
"license": "MIT",
"dependencies": {
"@clinic/clinic-common": "^7.0.0",
"@nearform/heap-profiler": "^2.0.0",
"abort-controller": "^3.0.0",
"copy-to-clipboard": "^3.0.8",
"d3-array": "^2.0.2",
"d3-fg": "^6.13.1",
"d3-selection": "^1.3.2",
"fs-extra": "^11.0.0",
"lodash.debounce": "^4.0.8",
"on-net-listen": "1.1.2",
"pump": "^3.0.0",
"querystringify": "^2.1.0",
"sinusoidal-decimal": "^1.0.0"
},
"devDependencies": {
"autocannon": "^7.5.0",
"chalk": "^4.1.0",
"chokidar": "^3.4.2",
"fastify": "^4.0.0",
"ioredis": "^5.0.1",
"open": "^8.4.0",
"snazzy": "^8.0.0",
"standard": "^17.0.0",
"tap": "^16.0.0"
}
}