-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.87 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.87 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
{
"name": "@talend/react-bootstrap",
"version": "1.35.2",
"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",
"scripts": {
"build:dev": "talend-scripts build --umd --dev",
"build:prod": "talend-scripts build --umd --prod",
"pre-release": "yarn build:dev && yarn build:prod",
"build:lib": "talend-scripts build",
"lint": "talend-scripts lint",
"test": "talend-scripts test",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"prettier": {
"singleQuote": true
},
"files": [
"CHANGELOG.md",
"lib",
"dist",
"es"
],
"keywords": [
"react",
"ecosystem-react",
"react-component",
"bootstrap"
],
"author": "Stephen J. Collings <stevoland@gmail.com>",
"license": "MIT",
"peerDependencies": {
"react": ">=16.3.0",
"react-dom": ">=16.3.0"
},
"devDependencies": {
"@talend/scripts-core": "^13.1.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^13.5.0",
"chai": "^4.3.7",
"chalk": "^2.4.2",
"create-react-class": "^15.7.0",
"cross-env": "^7.0.3",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"sinon": "^11.1.2"
},
"dependencies": {
"classnames": "^2.3.2",
"dom-helpers": "^3.4.0",
"invariant": "^2.2.4",
"keycode": "^2.2.1",
"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": "^4.4.5",
"uncontrollable": "^7.2.1",
"warning": "^3.0.0"
},
"publishConfig": {
"access": "public"
}
}