UNPKG

3.87 kBJSONView Raw
1{
2 "name": "react-bootstrap",
3 "version": "0.32.0",
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 "main": "lib/index.js",
11 "jsnext:main": "es/index.js",
12 "module": "es/index.js",
13 "scripts": {
14 "bootstrap-docs": "npm run build lib && cd www && yarn install && cd ..",
15 "build": "node tools/build.js",
16 "build-docs": "npm run bootstrap-docs && npm -C www run build",
17 "ci-lint": "eslint --rule 'prettier/prettier: 2'",
18 "format": "npm run ci-lint -- --fix",
19 "lint": "npm run ci-lint .",
20 "precommit": "lint-staged",
21 "release": "npm run build-docs && release",
22 "tdd": "karma start",
23 "test": "npm run lint && npm run test-browser && npm run test-node",
24 "test-browser": "cross-env NODE_ENV=test karma start --single-run",
25 "test-node": "mocha --compilers js:tools/babel-register.js test/server/*Spec.js"
26 },
27 "lint-staged": {
28 "*.js": [
29 "format",
30 "git add"
31 ]
32 },
33 "prettier": {
34 "singleQuote": true
35 },
36 "files": [
37 "CHANGELOG.md",
38 "lib",
39 "dist",
40 "es"
41 ],
42 "keywords": [
43 "react",
44 "ecosystem-react",
45 "react-component",
46 "bootstrap"
47 ],
48 "author": "Stephen J. Collings <stevoland@gmail.com>",
49 "license": "MIT",
50 "peerDependencies": {
51 "react": "^0.14.9 || >=15.3.0",
52 "react-dom": "^0.14.9 || >=15.3.0"
53 },
54 "devDependencies": {
55 "babel-core": "^6.13.2",
56 "babel-eslint": "^7.2.3",
57 "babel-loader": "^7.1.2",
58 "babel-plugin-add-module-exports": "^0.2.1",
59 "babel-plugin-dev-expression": "^0.2.1",
60 "babel-plugin-istanbul": "^4.1.5",
61 "babel-plugin-transform-class-properties": "^6.24.1",
62 "babel-plugin-transform-export-extensions": "^6.22.0",
63 "babel-plugin-transform-object-rest-spread": "^6.26.0",
64 "babel-plugin-transform-runtime": "^6.12.0",
65 "babel-preset-env": "^1.6.0",
66 "babel-preset-react": "^6.11.1",
67 "babel-register": "^6.26.0",
68 "chai": "^3.5.0",
69 "codecov": "^2.2.0",
70 "colors": "^1.1.2",
71 "create-react-class": "^15.5.3",
72 "cross-env": "^2.0.0",
73 "enzyme": "^3.1.0",
74 "enzyme-adapter-react-15": "^1.0.1",
75 "eslint": "^4.8.0",
76 "eslint-config-airbnb": "^15.1.0",
77 "eslint-config-prettier": "^2.9.0",
78 "eslint-plugin-import": "^2.7.0",
79 "eslint-plugin-jsx-a11y": "^5.1.1",
80 "eslint-plugin-mocha": "^4.11.0",
81 "eslint-plugin-prettier": "^2.4.0",
82 "eslint-plugin-react": "^7.5.1",
83 "fs-extra": "^4.0.2",
84 "husky": "^0.14.3",
85 "karma": "^1.1.1",
86 "karma-chrome-launcher": "^1.0.1",
87 "karma-cli": "^1.0.1",
88 "karma-coverage": "^1.1.0",
89 "karma-firefox-launcher": "^1.0.0",
90 "karma-mocha": "^1.1.1",
91 "karma-mocha-reporter": "^2.0.4",
92 "karma-sinon-chai": "^1.2.2",
93 "karma-sourcemap-loader": "^0.3.7",
94 "karma-webpack": "^2.0.4",
95 "lint-staged": "^6.0.0",
96 "lodash": "^4.13.1",
97 "mocha": "^2.5.3",
98 "prettier": "^1.9.2",
99 "react": "^15.5.4",
100 "react-dom": "^15.5.4",
101 "react-test-renderer": "^15.6.2",
102 "release-script": "^1.0.2",
103 "sinon": "^2.3.2",
104 "sinon-chai": "^2.8.0",
105 "webpack": "^3.6.0",
106 "webpack-atoms": "^4.1.2"
107 },
108 "dependencies": {
109 "babel-runtime": "^6.11.6",
110 "classnames": "^2.2.5",
111 "dom-helpers": "^3.2.0",
112 "invariant": "^2.2.1",
113 "keycode": "^2.1.2",
114 "prop-types": "^15.5.10",
115 "prop-types-extra": "^1.0.1",
116 "react-overlays": "^0.8.0",
117 "react-prop-types": "^0.4.0",
118 "react-transition-group": "^2.0.0",
119 "uncontrollable": "^4.1.0",
120 "warning": "^3.0.0"
121 },
122 "release-script": {
123 "bowerRepo": "git@github.com:react-bootstrap/react-bootstrap-bower.git",
124 "docsRepo": "git@github.com:react-bootstrap/react-bootstrap.github.io.git",
125 "docsRoot": "www/public"
126 }
127}