forked from react-bootstrap/react-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.36 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
{
"name": "react-bootstrap",
"version": "0.24.5",
"description": "Bootstrap 3 components build with React",
"repository": {
"type": "git",
"url": "react-bootstrap/react-bootstrap"
},
"homepage": "http://react-bootstrap.github.io/",
"scripts": {
"build": "babel-node tools/build-cli.js",
"lib-build": "babel-node tools/build-cli.js --lib-only",
"test-watch": "npm run lib-build && karma start",
"test-coverage": "npm run lib-build && COVERAGE=true karma start --single-run",
"test": "npm run lint && npm run build && npm run tests-set",
"tests-set": "karma start --single-run && _mocha --compilers js:babel-core/register test/server/*Spec.js",
"lint": "eslint ./",
"docs-build": "babel-node tools/build-cli.js --docs-only",
"docs": "babel-node docs/dev-run",
"docs-prod": "npm run docs-build && NODE_ENV=production babel-node docs/server.js",
"docs-prod-unoptimized": "npm run docs-build -- --dev && NODE_ENV=production babel-node docs/server.js"
},
"main": "lib/index.js",
"directories": {
"lib": "lib/"
},
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"lib",
"dist"
],
"keywords": [
"react",
"ecosystem-react",
"react-component",
"bootstrap"
],
"author": "Stephen J. Collings <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react": ">=0.13"
},
"devDependencies": {
"babel": "^5.8.19",
"babel-core": "^5.8.19",
"babel-eslint": "^4.0.5",
"babel-loader": "^5.3.2",
"bootstrap": "^3.3.5",
"brfs": "^1.4.0",
"chai": "^3.2.0",
"child-process-promise": "^1.1.0",
"codemirror": "^5.5.0",
"colors": "^1.1.2",
"css-loader": "^0.16.0",
"es5-shim": "^4.1.10",
"eslint": "^1.1.0",
"eslint-config-defaults": "^4.0.1",
"eslint-plugin-babel": "^2.0.0",
"eslint-plugin-lodash": "^0.1.3",
"eslint-plugin-mocha": "^0.4.0",
"eslint-plugin-react": "^3.1.0",
"express": "^4.13.1",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"fs-extra": "^0.23.0",
"fs-promise": "^0.3.1",
"glob": "^5.0.14",
"http-proxy": "^1.11.1",
"ip": "^0.3.3",
"isparta-loader": "^0.2.0",
"json-loader": "^0.5.2",
"karma": "~0.13.3",
"karma-chrome-launcher": "~0.2.0",
"karma-cli": "0.1.0",
"karma-coverage": "^0.5.0",
"karma-coveralls": "^1.1.2",
"karma-firefox-launcher": "~0.1.6",
"karma-mocha": "~0.2.0",
"karma-mocha-reporter": "^1.0.4",
"karma-phantomjs-launcher": "^0.2.0",
"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",
"marked": "^0.3.5",
"mocha": "^2.2.5",
"mt-changelog": "^0.6.1",
"node-libs-browser": "^0.5.2",
"nodemon": "^1.4.0",
"output-file-sync": "^1.1.1",
"phantomjs": "^1.9.17",
"portfinder": "^0.4.0",
"react": "^0.13.3",
"react-component-metadata": "^1.2.1",
"react-hot-loader": "^1.2.8",
"react-router": "^0.13.3",
"rimraf": "^2.4.2",
"semver": "^5.0.1",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0",
"style-loader": "^0.12.3",
"transform-loader": "^0.2.2",
"webpack": "^1.10.5",
"webpack-dev-server": "^1.10.1",
"yargs": "^3.16.1"
},
"dependencies": {
"babel-runtime": "^5.8.19",
"lodash": "^3.10.0",
"classnames": "^2.1.3"
}
}