This repository has been archived by the owner on Feb 24, 2023. It is now read-only.
forked from react-bootstrap/react-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
149 lines (149 loc) · 4.48 KB
/
package.json
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "react-bootstrap",
"version": "1.0.0-beta.5",
"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/es/index.js",
"scripts": {
"bootstrap": "yarn && yarn --cwd www",
"build": "node tools/build.js",
"build-docs": "yarn --cwd www run build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"start": "yarn --cwd www run develop",
"ci-lint": "eslint --rule \"prettier/prettier: 2\"",
"format": "npm run ci-lint . -- --fix",
"lint": "npm run ci-lint .",
"precommit": "lint-staged",
"release": "rollout",
"prepublishOnly": "npm run build",
"tdd": "karma start",
"test": "npm run lint && npm run dtslint && npm run test-browser && npm run test-node",
"test-browser": "cross-env NODE_ENV=test karma start --single-run",
"test-node": "cross-env NODE_ENV=test-server mocha --require @babel/register test/server/*Spec.js",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"dtslint": "dtslint types"
},
"lint-staged": {
"*.js": [
"npm run ci-lint -- --fix",
"git add"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"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": {
"@4c/rollout": "^1.2.0",
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@react-bootstrap/babel-preset": "^1.1.2",
"@react-bootstrap/eslint-config": "^1.1.1",
"@storybook/react": "^3.4.8",
"@types/react": "^16.7.13",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-istanbul": "^5.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.21",
"chai": "^4.2.0",
"chalk": "^2.3.2",
"codecov": "^3.1.0",
"colors": "^1.3.3",
"conventional-changelog-cli": "^2.0.11",
"cpy-cli": "^2.0.0",
"create-react-class": "^15.6.3",
"cross-env": "^5.2.0",
"dtslint": "^0.4.1",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^5.10.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-mocha": "^5.1.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.10.0",
"execa": "^1.0.0",
"fs-extra": "^7.0.1",
"husky": "^1.3.0",
"karma": "^3.1.4",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^2.0.0",
"karma-coverage": "^1.1.2",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.0.4",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"lint-staged": "^8.1.0",
"lodash": "^4.17.11",
"mocha": "^5.2.0",
"prettier": "^1.15.3",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-test-renderer": "^16.6.3",
"release-script": "^1.0.2",
"sinon": "^7.2.2",
"sinon-chai": "^3.3.0",
"typescript": "^3.2.2",
"webpack": "^4.28.0"
},
"dependencies": {
"@babel/runtime": "^7.2.0",
"@react-bootstrap/react-popper": "1.2.1",
"classnames": "^2.2.6",
"dom-helpers": "^3.4.0",
"invariant": "^2.2.3",
"keycode": "^2.1.2",
"popper.js": "^1.14.6",
"prop-types": "^15.6.2",
"prop-types-extra": "^1.1.0",
"react-context-toolbox": "^2.0.2",
"react-overlays": "^1.0.0",
"react-prop-types": "^0.4.0",
"react-transition-group": "^2.5.1",
"uncontrollable": "^6.0.0",
"warning": "^4.0.1"
},
"release": {
"publishDir": "lib"
}
}