-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
74 lines (74 loc) · 2 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@nearform/heap-profiler",
"version": "2.0.0",
"description": "Heap dump, sample profiler and allocation timeline generator for Node.",
"author": "NearForm Ltd",
"homepage": "https://github.com/nearform/heap-profiler",
"contributors": [
{
"name": "Paolo Insogna",
"url": "https://github.com/ShogunPanda"
},
{
"name": "Damien Simonin Feugas",
"url": "https://github.com/feugy"
},
{
"name": "Matteo Collina",
"url": "https://github.com/mcollina"
},
{
"name": "James M Snell",
"url": "https://github.com/jasnell"
}
],
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"keywords": [
"heap",
"profile",
"sampling",
"snapshot",
"allocation",
"timeline"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/heap-profiler.git"
},
"bugs": {
"url": "https://github.com/nearform/heap-profiler/issues"
},
"main": "src/index.js",
"scripts": {
"prepublishOnly": "npm run ci",
"postpublish": "git push origin && git push origin -f --tags",
"lint": "eslint src/**/*.js test/**/*.js",
"test": "tap --gc --reporter=spec --coverage-report=html --coverage-report=text --no-browser test/*.spec.js",
"ci": "npm run lint && tap --gc --no-color --reporter=spec --coverage-report=json --coverage-report=text --branches 90 --functions 90 --lines 90 --statements 90 --timeout 180 test/*.spec.js"
},
"dependencies": {
"sonic-boom": "^3.1.0",
"abort-controller": "^3.0.0"
},
"devDependencies": {
"docker-namesgenerator": "0.0.1",
"eslint": "^8.23.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"prettier": "^3.0.0",
"sinon": "^15.0.0",
"tap": "^16.0.0",
"tmp-promise": "^3.0.2"
},
"engines": {
"node": ">= 12.13.0"
}
}