This repository has been archived by the owner on Jun 24, 2023. It is now read-only.
forked from react-bootstrap/react-overlays
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.83 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
{
"name": "react-overlays",
"version": "0.6.5",
"description": "Utilities for creating robust overlay components",
"author": "Jason Quense <[email protected]>",
"repository": "react-bootstrap/react-overlays",
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib"
],
"keywords": [
"react-overlays",
"react-component",
"react",
"overlay",
"react-component",
"tooltip",
"bootstrap",
"popover",
"modal"
],
"scripts": {
"clean": "rimraf lib",
"clean:examples": "rimraf examples/static",
"build": "npm run clean && babel src --out-dir lib",
"build:examples": "npm run clean:examples && webpack --config webpack/docs.config.js",
"examples": "npm run clean:examples && babel-node examples/server.js",
"lint": "eslint examples/*.js src test *.js",
"test": "npm run lint && npm run testonly",
"testonly": "karma start --single-run",
"tdd": "karma start",
"release": "release"
},
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0"
},
"devDependencies": {
"@monastic.panic/component-playground": "^2.0.0",
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-object-assign": "^1.2.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.5.0",
"chai": "^3.5.0",
"component-metadata-loader": "^2.0.3",
"css-loader": "^0.23.1",
"es5-shim": "^4.5.9",
"eslint": "^3.0.1",
"eslint-plugin-mocha": "^4.0.0",
"eslint-plugin-react": "^5.2.2",
"isparta-loader": "^2.0.0",
"jquery": "^3.1.0",
"karma": "^1.1.1",
"karma-chrome-launcher": "^1.0.1",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.1.0",
"karma-coveralls": "^1.1.2",
"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": "^1.7.0",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"lodash": "^4.13.1",
"lolex": "^1.5.0",
"marked": "^0.3.5",
"mocha": "^2.5.3",
"node-libs-browser": "^1.0.0",
"raw-loader": "^0.5.1",
"react": "^15.2.1",
"react-addons-test-utils": "^15.2.1",
"react-bootstrap": "^0.29.5",
"react-component-metadata": "^3.0.0",
"react-dom": "^15.2.1",
"react-hot-loader": "^1.3.0",
"release-script": "^1.0.2",
"rimraf": "^2.5.3",
"simulant": "^0.2.2",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"teaspoon": "^6.4.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"yargs": "^4.7.1"
},
"dependencies": {
"classnames": "^2.2.5",
"dom-helpers": "^2.4.0",
"react-prop-types": "^0.3.2",
"warning": "^3.0.0"
}
}