forked from react-bootstrap/react-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
140 lines (140 loc) · 4.35 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
{
"name": "react-bootstrap",
"version": "0.32.1-docs.0",
"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",
"jsnext:main": "es/index.js",
"module": "es/index.js",
"scripts": {
"bootstrap": "yarn && yarn --cwd www",
"build": "node tools/build.js",
"build-docs": "yarn --cwd www run build",
"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": "npm run build-docs && release",
"tdd": "karma start",
"test": "npm run lint && 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 --compilers js:@babel/register test/server/*Spec.js",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"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 <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react": "^0.14.9 || >=15.3.0",
"react-dom": "^0.14.9 || >=15.3.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.42",
"@babel/core": "^7.0.0-beta.42",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.42",
"@babel/plugin-proposal-export-default-from": "^7.0.0-beta.42",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0-beta.42",
"@babel/plugin-syntax-dynamic-import": "^7.0.0-beta.42",
"@babel/plugin-transform-runtime": "^7.0.0-beta.42",
"@babel/preset-env": "^7.0.0-beta.42",
"@babel/preset-react": "^7.0.0-beta.42",
"@babel/register": "^7.0.0-beta.42",
"@monastic.panic/enzyme-adapter-react-16": "^1.2.4",
"@storybook/react": "^3.4.8",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.0.0-beta.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-istanbul": "^4.1.5",
"chai": "^4.1.2",
"chalk": "^2.3.2",
"codecov": "^3.0.4",
"colors": "^1.3.1",
"create-react-class": "^15.6.3",
"cross-env": "^5.2.0",
"enzyme": "^3.1.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-mocha": "^5.1.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.10.0",
"execa": "^0.10.0",
"fs-extra": "^7.0.0",
"husky": "^0.14.3",
"karma": "^2.0.5",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"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": "^1.3.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.0",
"lint-staged": "^7.2.0",
"lodash": "^4.17.10",
"mocha": "^5.2.0",
"prettier": "^1.13.7",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-test-renderer": "^16.4.1",
"release-script": "^1.0.2",
"sinon": "^2.3.2",
"sinon-chai": "^2.8.0",
"webpack": "^4.16.3"
},
"dependencies": {
"@babel/runtime": "^7.0.0-beta.42",
"classnames": "^2.2.6",
"dom-helpers": "^3.2.0",
"invariant": "^2.2.3",
"keycode": "^2.1.2",
"popper.js": "^1.14.3",
"prop-types": "^15.6.2",
"prop-types-extra": "^1.1.0",
"react-context-toolbox": "^1.2.1",
"react-overlays": "^1.0.0-beta.14",
"react-prop-types": "^0.4.0",
"react-transition-group": "^2.4.0",
"uncontrollable": "^6.0.0",
"warning": "^4.0.1"
},
"release-script": {
"bowerRepo": "[email protected]:react-bootstrap/react-bootstrap-bower.git",
"docsRepo": "[email protected]:react-bootstrap/react-bootstrap.github.io.git",
"docsRoot": "www/public/"
}
}