-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.12 KB
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
{
"name": "react-allow",
"version": "0.0.7",
"description": "A multi-level role based authorization",
"author": "m.pivaa@gmail.com",
"keywords": [
"authorization",
"authentication",
"react"
],
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "mpivaa/allow"
},
"scripts": {
"compile": "npx babel src --out-dir lib --ignore test.js",
"test": "jest"
},
"dependencies": {
"lodash": "^4.17.10"
},
"engines": {
"node": "^10.0.0"
},
"peerDependencies": {
"react": "^16.3.2"
},
"devDependencies": {
"react": "^16.3.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^4.1.3",
"babel-jest": "^22.4.4",
"babel-polyfill": "^6.16.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^2.13.1",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-react": "^3.6.2",
"flow-bin": "^0.72.0",
"jest": "^22.4.4",
"jest-html": "^1.4.0",
"react-test-renderer": "^16.3.2"
}
}