-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.29 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.29 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@talend/react-bootstrap",
"version": "4.1.1",
"description": "Bootstrap 3 components built with React",
"repository": {
"type": "git",
"url": "react-bootstrap/react-bootstrap"
},
"homepage": "https://react-bootstrap.github.io/",
"sideEffects": false,
"main": "lib/index.js",
"module": "./lib-esm/index.js",
"exports": {
".": {
"import": "./lib-esm/index.js",
"require": "./lib/index.js"
}
},
"scripts": {
"build:lib:esm": "talend-scripts build --esm",
"build:lib": "talend-scripts build",
"lint": "eslint -o eslint-report.json --format json .",
"test": "vitest run",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test:update": "vitest run --update",
"test:cov": "vitest run --coverage"
},
"files": [
"CHANGELOG.md",
"lib",
"lib-esm",
"dist",
"es"
],
"keywords": [
"react",
"ecosystem-react",
"react-component",
"bootstrap"
],
"author": "Stephen J. Collings <stevoland@gmail.com>",
"license": "MIT",
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.18",
"@talend/eslint-config": "^14.1.2",
"@talend/eslint-plugin": "^1.8.1",
"@talend/scripts-config-typescript": "^12.1.1",
"@talend/scripts-core": "^20.0.0",
"@talend/scripts-config-babel": "^13.10.1",
"@talend/scripts-config-react-webpack": "^17.1.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.6.1",
"chai": "^4.5.0",
"chalk": "^2.4.2",
"create-react-class": "^15.7.0",
"cross-env": "^10.1.0",
"eslint": "^10.0.3",
"lodash": "^4.17.23",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-test-renderer": "^18.3.1",
"sinon": "^11.1.2",
"vitest": "^4.0.18"
},
"dependencies": {
"classnames": "^2.5.1",
"dom-helpers": "^3.4.0",
"invariant": "^2.2.4",
"prop-types": "^15.8.1",
"prop-types-extra": "^1.1.1",
"react-overlays": "^0.9.3",
"react-prop-types": "^0.4.0",
"react-transition-group": "^2.9.0",
"uncontrollable": "^7.2.1",
"warning": "^3.0.0"
},
"publishConfig": {
"access": "public"
}
}