-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
58 lines (58 loc) · 1.25 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
{
"name": "inspector-api",
"version": "1.4.10",
"main": "index.js",
"bin": "./index.js",
"types": "./index.d.ts",
"exports": {
"require": "./index.js",
"import": "./index.js"
},
"files": [
"index.js",
"index.d.ts",
"src/**"
],
"scripts": {
"types": "tsc -p tsconfig.json",
"test": "NODE_ENV=test ./node_modules/.bin/jest",
"linter": "./node_modules/.bin/eslint ./"
},
"keywords": [
"v8",
"inspector",
"profiler",
"profiling",
"cpu",
"memory",
"coverage",
"heap",
"HeapSnapshot",
"performance",
"sampling"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wallet77/v8-inspector-api.git"
},
"author": "wallet77",
"license": "MIT",
"description": "A simple node module to access V8 inspector + some tools to export and read the data.",
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"engineStrict": true,
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"jest": "29.7.0",
"typescript": "^5.5.4"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.637.0"
}
}