forked from hyj1991/v8-profiler-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.01 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
{
"name": "v8-profiler-next",
"version": "1.9.0",
"description": "node bindings for the v8 profiler",
"main": "dispatch.js",
"binary": {
"module_name": "profiler",
"module_path": "./build/binding/{configuration}/{node_abi}-{platform}-{arch}/",
"remote_path": "./v{version}/",
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{arch}.tar.gz",
"host": "https://github.com/hyj1991/v8-profiler-next/releases/download"
},
"scripts": {
"install": "node scripts/install.js",
"build": "node scripts/rebuild.js",
"dep": "npm run build && npm run test",
"pack-common": "node scripts/common.js",
"pack-7u": "node scripts/7u.js",
"pack-8u": "node scripts/8u.js",
"copy": "node scripts/copy.js",
"pack": "node scripts/clean.js && node-pre-gyp package && node-pre-gyp testpackage && npm run copy",
"test-old": "mocha test/*.test.js --exclude test/worker.test.js --timeout 10000",
"test-new": "mocha test/*.test.js --timeout 10000",
"debug-test": "V8_PROFILER_DEBUG=* node scripts/test.js",
"test": "node scripts/test.js",
"test-single": "mocha --timeout 10000",
"format": "clang-format -i --glob=\"src/**/*[.h|.cc]\"",
"lint": "npm run format && eslint . --fix",
"stability": "node scripts/stability.js",
"autod": "autod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyj1991/v8-profiler-next.git"
},
"keywords": [
"node",
"v8-profiler"
],
"author": "https://github.com/hyj1991",
"license": "MIT",
"bugs": {
"url": "https://github.com/hyj1991/v8-profiler-next/issues"
},
"homepage": "https://github.com/hyj1991/v8-profiler-next#readme",
"files": [
"lib",
"scripts",
"src",
"binding.gyp",
"dispatch.js",
"index.d.ts",
"LICENSE",
"README.md"
],
"dependencies": {
"@xprofiler/node-pre-gyp": "^1.0.9",
"nan": "^2.17.0"
},
"devDependencies": {
"chai": "^4.3.6",
"clang-format": "^1.8.0",
"eslint": "^8.16.0",
"mocha": "^5.2.0"
}
}