-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
72 lines (72 loc) · 2.04 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
{
"name": "react-rbac-guard",
"version": "0.0.3",
"description": "Module allowing to manage visibility of particular components depending on user credentials",
"main": "./lib/index.js",
"engines": {
"npm": ">=4"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean-dist": "rm -rf ./lib && mkdir ./lib",
"prebuild": "npm run clean-dist",
"build": "node tools/build.js"
},
"author": "Nurzhan Saktaganov <nur92world@mail.ru>",
"license": "MIT",
"dependencies": {
"uglifyjs-webpack-plugin": "^2.0.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.6",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.0.2",
"chai-as-promised": "^7.1.0",
"chai-enzyme": "^0.8.0",
"chalk": "^2.0.1",
"coveralls": "^3.0.2",
"enzyme": "^2.9.1",
"eslint-watch": "^3.1.2",
"html-webpack-plugin": "^2.29.0",
"husky": "^1.0.0-rc.15",
"isparta": "^4.0.0",
"jsdom": "^11.2.0",
"mocha": "^3.4.2",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.2",
"sinon": "^2.3.6",
"sinon-chai": "^2.11.0",
"webpack": "^3.0.0"
},
"peerDependencies": {
"react": ">0.14.0 || >15.0.0",
"react-dom": ">0.14.0 || >15.0.0"
},
"keywords": [
"react",
"rbac",
"permission",
"guard",
"protect",
"conditional render"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nurzhan-saktaganov/react-rbac-guard.git"
},
"bugs": {
"url": "https://github.com/nurzhan-saktaganov/react-rbac-guard/issues"
},
"homepage": "https://github.com/nurzhan-saktaganov/react-rbac-guard#readme"
}