forked from react-bootstrap/react-overlays
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.75 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
{
"name": "react-overlays",
"version": "0.4.4",
"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/",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"keywords": [
"react-overlays",
"react-component",
"react",
"overlay",
"react-component",
"tooltip",
"bootstrap",
"popover",
"modal"
],
"scripts": {
"prepublish": "npm run test && npm run build",
"clean": "rimraf lib",
"clean:examples": "rimraf examples/static",
"build": "npm run clean && babel src --out-dir lib",
"build:examples": "npm run clean:examples && babel-node ./webpack/run-webpack --config docs.config.js",
"examples": "npm run clean:examples && babel-node ./examples/server.js",
"lint": "eslint src test",
"test": "npm run lint && karma start --single-run",
"tdd": "karma start",
"coverage": "COVERAGE=true karma start --single-run",
"patch": "release patch",
"minor": "release minor",
"major": "release major"
},
"peerDependencies": {
"react": ">=0.13.0"
},
"devDependencies": {
"babel": "5.6.14",
"babel-core": "5.6.15",
"babel-eslint": "^3.1.20",
"babel-loader": "^5.3.0",
"babel-plugin-object-assign": "^1.2.1",
"chai": "^3.2.0",
"component-playground": "jquense/component-playground",
"css-loader": "^0.15.6",
"es5-shim": "^4.1.7",
"eslint": "^0.24.0",
"eslint-plugin-babel": "^1.0.0",
"eslint-plugin-mocha": "^0.4.0",
"eslint-plugin-react": "^3.1.0",
"isparta-loader": "^0.2.0",
"jquery": "^2.1.4",
"karma": "^0.13.3",
"karma-chrome-launcher": "^0.2.0",
"karma-cli": "^0.1.0",
"karma-coverage": "^0.4.2",
"karma-coveralls": "^1.1.0",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.0.4",
"karma-sinon-chai": "^1.0.0",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^1.7.0",
"less": "^2.5.1",
"less-loader": "^2.2.0",
"lodash": "^3.10.0",
"marked": "^0.3.5",
"mocha": "^2.2.5",
"mt-changelog": "^0.6.1",
"node-libs-browser": "^0.5.2",
"raw-loader": "^0.5.1",
"react": "^0.13.3",
"react-bootstrap": "^0.24.2",
"react-component-metadata": "^1.2.2",
"react-hot-loader": "^1.2.7",
"release-script": "^0.2.1",
"rimraf": "^2.4.2",
"simulant": "^0.1.5",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0",
"style-loader": "^0.12.3",
"webpack": "^1.9.11",
"webpack-dev-server": "^1.9.0",
"yargs": "^3.14.0"
},
"dependencies": {
"classnames": "^2.1.3",
"dom-helpers": "^2.3.0",
"react-prop-types": "^0.2.1",
"warning": "^2.0.0"
}
}