-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
71 lines (71 loc) · 1.75 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": "2.6.4",
"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": "^1.1.2",
"form-data": "^4.0.0",
"moment": "^2.28.0",
"nounou": "^1.2.1",
"p-map": "^4.0.0",
"split2": "^3.2.2",
"synp": "^1.9.9",
"through2": "^4.0.2",
"urllib": "^2.36.1",
"uuid": "^9.0.1",
"ws": "^7.3.1"
},
"devDependencies": {
"autod": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-egg": "^8.1.2",
"expect.js": "^0.3.1",
"mocha": "^7.2.0",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"mm": "^3.4.0"
},
"nodemonConfig": {
"watch": [
"test/fixtures/transit-server.js"
]
}
}