-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.88 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "busybee-results-react",
"version": "2.1.0",
"description": "a component for rendering a BusybeeTestResults object",
"author": "stowns",
"license": "MIT",
"repository": "https://github.com/busybee-cicd/busybee-results-react",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"engines": {
"node": ">=24",
"npm": ">=10"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"clean": "rm -rf dist",
"build": "npm run clean && rollup -c",
"dev": "cd example && npm run dev",
"predeploy": "npm run build && cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@fortawesome/react-fontawesome": "^3.3.1",
"@microlink/react-json-view": "^1.31.18",
"classnames": "^2.5.1",
"lodash": "^4.18.1",
"moment": "^2.30.1",
"reactstrap": "^9.2.3",
"virtual-react-json-diff": "^1.0.16"
},
"peerDependencies": {
"bootstrap": "^5.3.8",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@testing-library/react": "^16.3.2",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-url": "^8.0.2",
"@types/lodash": "^4.17.24",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"ajv": "^8.20.0",
"gh-pages": "^6.3.0",
"jsdom": "^29.0.2",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"rollup": "^4.60.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.37.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"files": [
"dist"
]
}