-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 680 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 680 Bytes
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
{
"name": "pbac",
"version": "0.3.2",
"description": "AWS IAM Policy inspired and (mostly) compatible evaluation engine",
"dependencies": {
"ipcheck": "^0.1.0",
"lodash": "^4.17.21",
"z-schema": "^5.0.3"
},
"scripts": {
"test": "mocha --bail t/",
"docs": "cat output/intro.md LICENSE > README.md && doctoc --title Contents README.md"
},
"devDependencies": {
"doctoc": "^2.2.0",
"mocha": "^10.0.0"
},
"repository": {
"type": "git",
"url": "monken/node-pbac"
},
"main": "pbac.js",
"author": "Moritz Onken <onken@netcubed.de>",
"license": "MIT",
"files": [
"pbac.js",
"schema.json",
"conditions.js"
]
}