forked from buildkite/test-collector-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.08 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.08 KB
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
{
"name": "buildkite-test-collector",
"description": "Buildkite Test Analytics collectors for JavaScript test frameworks",
"keywords": [
"javascript",
"buildkite",
"buildkite-test-analytics",
"buildkite-test-collector"
],
"version": "1.3.0",
"homepage": "https://buildkite.com/test-analytics",
"bugs": "https://github.com/buildkite/test-collector-javascript/issues",
"license": "MIT",
"files": [
"LICENSE.md",
"README.md",
"jasmine/",
"jest/",
"mocha/",
"util/"
],
"dependencies": {
"axios": "^0.26.1",
"dotenv": "^16.0.2",
"request-spy": "^0.0.10",
"uuid": "^8.3.2"
},
"devDependencies": {
"jasmine": "^4.2.1",
"jest": "^29.3.1",
"mocha": "^10.0.0",
"mocha-multi-reporters": "^1.5.1"
},
"workspaces": [
"examples/jest",
"examples/jasmine",
"examples/mocha"
],
"scripts": {
"test": "jest",
"preversion": "npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/buildkite/test-collector-javascript.git"
},
"engines": {
"npm": ">=7.0.0"
}
}