-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
71 lines (71 loc) · 1.76 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
{
"name": "xtransit",
"version": "3.0.0",
"description": "The agent that can collect or transfer xprofiler's performance logs.",
"main": "xtransit.js",
"bin": {
"xtransit": "bin/xtransit.js"
},
"scripts": {
"serve": "nodemon test/fixtures/transit-server.js",
"lint": "eslint --fix .",
"test": "mocha -t 0 -R spec test/*.test.js",
"test-single": "mocha -t 0 -R spec",
"cov": "nyc --reporter=html --reporter=text --reporter=lcov mocha -R spec test/*.test.js --timeout 0",
"cov-single": "nyc --reporter=html --reporter=text --reporter=lcov mocha --timeout 0 -R spec",
"ci": "npm run lint && npm run cov",
"release": "node scripts/release.js",
"autod": "autod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/X-Profiler/xtransit.git"
},
"files": [
"bin",
"commands",
"common",
"config",
"lib",
"orders",
"index.d.ts",
"xtransit.js"
],
"keywords": [
"xprofiler"
],
"author": "[email protected]",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/X-Profiler/xtransit/issues"
},
"homepage": "https://github.com/X-Profiler/xtransit#readme",
"dependencies": {
"address": "^2.0.3",
"form-data": "^4.0.1",
"moment": "^2.28.0",
"nounou": "^1.2.1",
"p-map": "^4.0.0",
"split2": "^4.0.2",
"synp": "^1.9.9",
"through2": "^4.0.2",
"urllib": "^4.6.3",
"uuid": "^9.0.1",
"ws": "^8.18.0"
},
"devDependencies": {
"autod": "^3.1.0",
"eslint": "^8.57.1",
"eslint-config-egg": "^14.0.0",
"expect.js": "^0.3.1",
"mocha": "^11.0.2",
"nodemon": "^3.1.7",
"nyc": "^17.1.0",
"mm": "^3.4.0"
},
"nodemonConfig": {
"watch": [
"test/fixtures/transit-server.js"
]
}
}