forked from react-bootstrap/react-router-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.43 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
{
"name": "react-router-bootstrap",
"version": "0.18.1",
"description": "react-router and react-bootstrap compatible components",
"main": "./lib/index.js",
"scripts": {
"prepublish": "npm run build",
"build": "babel src --out-dir=lib && webpack && COMPRESS=1 webpack && npm run bower-prepare",
"test": "npm run lint && karma start --single-run",
"tdd": "karma start",
"visual-test": "open http://localhost:8080/public/visual#/ && webpack-dev-server --config webpack.test.config.babel.js",
"lint": "eslint ./",
"bower-prepare": "babel-node scripts/bower-prepare.js",
"patch": "release patch",
"minor": "release minor",
"major": "release major"
},
"repository": {
"type": "git",
"url": "git@github.com:react-bootstrap/react-router-bootstrap.git"
},
"keywords": [
"react",
"react-router",
"react-bootstrap"
],
"author": {
"name": "Matt Smith",
"email": "mtscout6@gmail.com"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/react-bootstrap/react-router-bootstrap/issues"
},
"homepage": "https://github.com/react-bootstrap/react-router-bootstrap",
"peerDependencies": {
"react-bootstrap": ">=0.22.4",
"react-router": ">=1.0.0-beta3"
},
"devDependencies": {
"babel": "^5.5.6",
"babel-core": "^5.5.6",
"babel-eslint": "^4.0.5",
"babel-loader": "^5.1.4",
"bootstrap": "^3.3.1",
"chai": "^3.0.0",
"colors": "^1.1.2",
"css-loader": "^0.15.3",
"eslint": "^1.0.0",
"eslint-config-airbnb": "0.0.7",
"eslint-plugin-babel": "^1.0.0",
"eslint-plugin-mocha": "^0.4.0",
"eslint-plugin-react": "^3.1.0",
"karma": "^0.13.3",
"karma-cli": "^0.1.0",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.0.2",
"karma-phantomjs-launcher": "^0.2.0",
"karma-webpack": "^1.5.0",
"less": "^2.5.1",
"less-loader": "^2.2.0",
"lodash": "^3.10.0",
"mocha": "^2.1.0",
"mt-changelog": "^0.6.1",
"node-libs-browser": "^0.5.2",
"phantomjs": "^1.9.13",
"react": ">0.10.0",
"react-bootstrap": ">=0.22.4",
"react-router": ">=0.13.1",
"release-script": "^0.2.1",
"shelljs": "^0.5.1",
"style-loader": "^0.12.3",
"url-loader": "^0.5.6",
"webpack": "^1.4.15",
"webpack-dev-server": "^1.7.0",
"yargs": "^3.15.0"
},
"files": [
"lib"
],
"release-script": {
"bowerRepo": "git@github.com:react-bootstrap/react-router-bootstrap-bower.git"
}
}