forked from react-bootstrap/react-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 4.01 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
{
"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": "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
},
"files": ["CHANGELOG.md", "lib", "dist", "es"],
"keywords": ["react", "ecosystem-react", "react-component", "bootstrap"],
"author": "Stephen J. Collings <stevoland@gmail.com>",
"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",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-istanbul": "^4.1.5",
"chai": "^3.5.0",
"codecov": "^2.2.0",
"colors": "^1.1.2",
"create-react-class": "^15.6.3",
"cross-env": "^2.0.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-15": "^1.0.1",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-mocha": "^4.12.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"fs-extra": "^5.0.0",
"husky": "^0.14.3",
"karma": "^1.1.1",
"karma-chrome-launcher": "^1.0.1",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.1.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.0.4",
"karma-sinon-chai": "^1.2.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.13",
"lint-staged": "^6.0.0",
"lodash": "^4.17.5",
"mocha": "^2.5.3",
"prettier": "^1.11.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.6.2",
"release-script": "^1.0.2",
"sinon": "^2.3.2",
"sinon-chai": "^2.8.0",
"webpack": "^3.6.0",
"webpack-atoms": "^5.1.1"
},
"dependencies": {
"@babel/runtime": "^7.0.0-beta.40",
"classnames": "^2.2.5",
"dom-helpers": "^3.2.0",
"invariant": "^2.2.3",
"keycode": "^2.1.2",
"prop-types": "^15.6.1",
"prop-types-extra": "^1.0.1",
"react-overlays": "^0.8.0",
"react-prop-types": "^0.4.0",
"react-transition-group": "^2.0.0",
"uncontrollable": "^5.0.0",
"warning": "^3.0.0"
},
"release-script": {
"bowerRepo": "git@github.com:react-bootstrap/react-bootstrap-bower.git",
"docsRepo": "git@github.com:react-bootstrap/react-bootstrap.github.io.git",
"docsRoot": "www/public/"
}
}