forked from X-Profiler/xprofiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.97 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
{
"name": "xprofiler",
"version": "1.2.0",
"description": "node.js addon to output runtime logs",
"bin": {
"xprofctl": "bin/xprofctl"
},
"main": "xprofiler.js",
"scripts": {
"build": "npm run lint && node-gyp rebuild",
"format": "clang-format -i --glob=\"src/**/!(report_win)[.h|.cc]\"",
"lint": "npm run format && eslint --fix xprofiler.js \"test/**/*.js\" lib/*.js patch/*.js bin/xprofctl scripts/**/*.js",
"test": "mocha -t 0 -R spec test/*.test.js test/patch/*.test.js",
"test-single": "mocha -t 0 -R spec",
"cov": "nyc --reporter=html --reporter=text --reporter=lcov mocha -R spec test/*.test.js test/patch/*.test.js --timeout 0",
"cov-single": "nyc --reporter=html --reporter=text --reporter=lcov mocha --timeout 0 -R spec",
"upload": "node scripts/upload.js",
"ci": "npm run lint && npm run cov && codecov && npm run upload",
"dep": "npm run build && npm run cov",
"release": "node scripts/release.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyj1991/xprofiler.git"
},
"files": [
"bin",
"lib",
"patch",
"src",
"binding.gyp",
"xprofiler.js",
"index.d.ts",
"xprofiler.json"
],
"author": "[email protected]",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/hyj1991/xprofiler/issues"
},
"homepage": "https://github.com/hyj1991/xprofiler#readme",
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.14.0",
"node-gyp": "^6.0.0",
"uuid": "^3.3.3",
"yargs": "^14.2.0"
},
"devDependencies": {
"clang-format": "^1.2.4",
"codecov": "^3.6.1",
"eslint": "^6.6.0",
"expect.js": "^0.3.1",
"formstream": "^1.1.0",
"mm": "^2.5.0",
"mocha": "^6.2.2",
"moment": "^2.24.0",
"nyc": "^14.1.1",
"test-exclude": "^5.2.3",
"tunnel-agent": "^0.6.0",
"urllib": "^2.34.1"
},
"xctlIpcPath": {
"unix": "xprofiler-ctl-uds-path.sock",
"win32": "xprofiler-ctl"
},
"blurryTag": "__"
}