-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
69 lines (69 loc) · 1.52 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
{
"name": "react-pundit",
"description": "React components to build permission controlled ui's.",
"version": "2.0.0",
"main": "lib/index.js",
"author": "jcgertig",
"repository": "jcgertig/react-pundit",
"license": "MIT",
"scripts": {
"compile": "babel src/ --out-dir lib",
"bundle": "babel src/ --out-file dist/react-pundit.js",
"prepublish": "npm run compile",
"test:watch": "jest --watch --coverage",
"test": "jest --coverage"
},
"peerDependencies": {
"react": "^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-modules-umd": "^6.18.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"jest": "^21.0.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0"
},
"dependencies": {
"lodash.isplainobject": "^4.0.6",
"lodash.omit": "^4.5.0",
"prop-types": "^15.5.8"
},
"files": [
"lib/",
"dist/"
],
"keywords": [
"acl",
"react",
"permission",
"pundit",
"permissions",
"permissioning",
"admin",
"access control list",
"access",
"control",
"list",
"OO",
"Object Oriented"
],
"jest": {
"verbose": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"/lib/",
"/examples/"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/lib/",
"/examples/"
]
}
}