forked from react-bootstrap/react-overlays
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.64 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
{
"name": "@larrydahooster/react-overlays-fork",
"version": "0.8.0",
"description": "Utilities for creating robust overlay components",
"author": "Jason Quense <[email protected]>",
"repository": "larrydahooster/react-overlays",
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib"
],
"keywords": [
"react-overlays",
"react-component",
"react",
"overlay",
"react-component",
"tooltip",
"bootstrap",
"popover",
"modal"
],
"scripts": {
"build": "npm run clean && babel src -d lib",
"build-examples": "rimraf examples/static && webpack --config webpack/docs.config.js",
"clean": "rimraf lib",
"examples": "webpack-dev-server --config webpack/examples.config.js --hot --port 3000 --progress",
"lint": "eslint examples src test *.js",
"release": "release",
"tdd": "cross-env NODE_ENV=test karma start",
"test": "npm run lint && npm run testonly",
"testonly": "npm run tdd -- --single-run"
},
"dependencies": {
"classnames": "^2.2.5",
"dom-helpers": "^3.2.1",
"prop-types": "^15.5.10",
"prop-types-extra": "^1.0.1",
"warning": "^3.0.0"
},
"peerDependencies": {
"react": "^0.14.9 || >=15.3.0",
"react-dom": "^0.14.9 || >=15.3.0"
},
"devDependencies": {
"@monastic.panic/component-playground": "^2.0.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^4.1.4",
"babel-preset-env": "^1.5.2",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"chai": "^3.5.0",
"codecov": "^2.2.0",
"component-metadata-loader": "^3.0.1",
"cross-env": "^5.0.1",
"css-loader": "^0.28.4",
"eslint": "^3.19.0",
"eslint-plugin-mocha": "^4.9.0",
"eslint-plugin-react": "^7.0.1",
"jquery": "^3.2.1",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.1.1",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-sinon-chai": "^1.3.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"less": "^2.7.2",
"less-loader": "^4.0.4",
"lodash": "^4.17.4",
"mocha": "^3.4.2",
"node-libs-browser": "^2.0.0",
"raw-loader": "^0.5.1",
"react": "^15.5.4",
"react-bootstrap": "^0.31.0",
"react-dom": "^15.5.4",
"release-script": "^1.0.2",
"rimraf": "^2.6.1",
"simulant": "^0.2.2",
"sinon": "^2.3.2",
"sinon-chai": "^2.10.0",
"style-loader": "^0.18.2",
"teaspoon": "^6.5.0",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
}
}