UNPKG

4.17 kBJSONView Raw
1{
2 "name": "react-bootstrap",
3 "version": "0.32.4",
4 "description": "Bootstrap 3 components built with React",
5 "repository": {
6 "type": "git",
7 "url": "react-bootstrap/react-bootstrap"
8 },
9 "homepage": "https://react-bootstrap.github.io/",
10 "sideEffects": false,
11 "main": "lib/index.js",
12 "jsnext:main": "es/index.js",
13 "module": "es/index.js",
14 "scripts": {
15 "bootstrap": "yarn && yarn --cwd www",
16 "build": "node tools/build.js",
17 "build-docs": "yarn --cwd www run build",
18 "start": "yarn --cwd www run develop",
19 "ci-lint": "eslint --rule 'prettier/prettier: 2'",
20 "format": "npm run ci-lint . -- --fix",
21 "lint": "npm run ci-lint .",
22 "precommit": "lint-staged",
23 "release": "npm run build-docs && release",
24 "tdd": "karma start",
25 "test": "npm run lint && npm run test-browser && npm run test-node",
26 "test-browser": "cross-env NODE_ENV=test karma start --single-run",
27 "test-node": "cross-env NODE_ENV=test-server mocha --compilers js:@babel/register test/server/*Spec.js",
28 "storybook": "start-storybook -p 6006",
29 "build-storybook": "build-storybook"
30 },
31 "lint-staged": {
32 "*.js": [
33 "npm run ci-lint -- --fix",
34 "git add"
35 ]
36 },
37 "prettier": {
38 "singleQuote": true
39 },
40 "files": [
41 "CHANGELOG.md",
42 "lib",
43 "dist",
44 "es"
45 ],
46 "keywords": [
47 "react",
48 "ecosystem-react",
49 "react-component",
50 "bootstrap"
51 ],
52 "author": "Stephen J. Collings <stevoland@gmail.com>",
53 "license": "MIT",
54 "peerDependencies": {
55 "react": "^0.14.9 || >=15.3.0",
56 "react-dom": "^0.14.9 || >=15.3.0"
57 },
58 "devDependencies": {
59 "@babel/cli": "^7.0.0",
60 "@babel/core": "^7.0.0",
61 "@babel/plugin-proposal-class-properties": "^7.0.0",
62 "@babel/plugin-proposal-export-default-from": "^7.0.0",
63 "@babel/plugin-proposal-export-namespace-from": "^7.0.0",
64 "@babel/plugin-syntax-dynamic-import": "^7.0.0",
65 "@babel/plugin-transform-runtime": "^7.0.0",
66 "@babel/preset-env": "^7.0.0",
67 "@babel/preset-react": "^7.0.0",
68 "@babel/register": "^7.0.0",
69 "babel-eslint": "^9.0.0",
70 "babel-loader": "^8.0.2",
71 "babel-plugin-add-module-exports": "^0.2.1",
72 "babel-plugin-dev-expression": "^0.2.1",
73 "babel-plugin-istanbul": "^5.0.1",
74 "chai": "^3.5.0",
75 "chalk": "^2.3.2",
76 "codecov": "^3.0.4",
77 "colors": "^1.2.1",
78 "create-react-class": "^15.6.3",
79 "cross-env": "^5.2.0",
80 "enzyme": "^3.1.0",
81 "enzyme-adapter-react-16": "^1.2.0",
82 "eslint": "^4.19.1",
83 "eslint-config-airbnb": "^16.1.0",
84 "eslint-config-prettier": "^2.9.0",
85 "eslint-import-resolver-webpack": "^0.10.1",
86 "eslint-plugin-import": "^2.12.0",
87 "eslint-plugin-jsx-a11y": "^6.0.3",
88 "eslint-plugin-mocha": "^5.0.0",
89 "eslint-plugin-prettier": "^2.6.0",
90 "eslint-plugin-react": "^7.8.2",
91 "execa": "^0.11.0",
92 "fs-extra": "^7.0.0",
93 "husky": "^0.14.3",
94 "karma": "^2.0.2",
95 "karma-chrome-launcher": "^2.2.0",
96 "karma-cli": "^1.0.1",
97 "karma-coverage": "^1.1.2",
98 "karma-firefox-launcher": "^1.0.0",
99 "karma-mocha": "^1.1.1",
100 "karma-mocha-reporter": "^2.0.4",
101 "karma-sinon-chai": "^1.3.4",
102 "karma-sourcemap-loader": "^0.3.7",
103 "karma-webpack": "^3.0.0",
104 "lint-staged": "^7.1.1",
105 "lodash": "^4.17.10",
106 "mocha": "^5.2.0",
107 "prettier": "^1.12.1",
108 "react": "^16.4.2",
109 "react-dom": "^16.4.2",
110 "react-test-renderer": "^16.4.2",
111 "release-script": "^1.0.2",
112 "sinon": "^2.3.2",
113 "sinon-chai": "^2.8.0",
114 "webpack": "^4.4.1"
115 },
116 "dependencies": {
117 "@babel/runtime-corejs2": "^7.0.0",
118 "classnames": "^2.2.5",
119 "dom-helpers": "^3.2.0",
120 "invariant": "^2.2.4",
121 "keycode": "^2.2.0",
122 "prop-types": "^15.6.1",
123 "prop-types-extra": "^1.0.1",
124 "react-overlays": "^0.8.0",
125 "react-prop-types": "^0.4.0",
126 "react-transition-group": "^2.0.0",
127 "uncontrollable": "^5.0.0",
128 "warning": "^3.0.0"
129 },
130 "release-script": {
131 "bowerRepo": "git@github.com:react-bootstrap/react-bootstrap-bower.git",
132 "docsRepo": "git@github.com:react-bootstrap/react-bootstrap.github.io.git",
133 "docsRoot": "www/public/"
134 }
135}