forked from burczu/react-router-role-authorization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.9 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
{
"name": "react-router-role-authorization",
"version": "1.1.4",
"description": "Role-based authorization component for react-router",
"scripts": {
"test": "eslint lib/ spec/ && ./node_modules/karma/bin/karma start karma.conf.js",
"watch-test": "./node_modules/karma/bin/karma start karma.conf.js --auto-watch --no-single-run",
"build": "webpack"
},
"main": "dist/index.js",
"author": "Bartłomiej Dybowski",
"license": "MIT",
"keywords": [
"react",
"reactjs",
"react-component",
"authorization",
"user roles"
],
"repository": {
"type": "git",
"url": "https://github.com/burczu/react-router-role-authorization.git"
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-umd": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.9.2",
"css-loader": "^0.23.1",
"es5-shim": "^4.5.9",
"eslint": "^2.13.1",
"eslint-plugin-import": "^1.10.0",
"eslint-plugin-react": "^5.2.2",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"karma": "^1.1.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.1",
"karma-sourcemap-loader": "~0.3.5",
"karma-webpack": "~1.7.0",
"lodash": "^4.13.1",
"node-sass": "^3.8.0",
"prop-types": "15.6.0",
"react": "^16.0.0",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {},
"peerDependencies": {
"react": "^15.1.0 || ^16.0.0",
"react-router": ">= 2.5.1 < 4.0.0"
}
}