-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 996 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 996 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
31
32
33
34
35
36
37
38
39
{
"name": "pbac",
"version": "0.2.0",
"description": "AWS IAM Policy inspired and (mostly) compatible evaluation engine",
"dependencies": {
"ipaddr.js": "^1.6.0",
"lodash": "^4.17.5",
"z-schema": "^3.19.1"
},
"scripts": {
"test": "mocha --bail t/",
"test:browser": "cross-env BROWSER=1 mocha --bail -r ./browser.js t/",
"docs": "cat output/intro.md LICENSE > README.md && doctoc --title Contents README.md",
"build": "webpack",
"prepublishOnly": "npm test && npm run test:browser && npm run build"
},
"devDependencies": {
"atob": "^2.1.0",
"cross-env": "^5.1.4",
"doctoc": "^1.3.1",
"jsdox": "^0.4.9",
"mocha": "^2.2.5",
"webpack": "^4.4.1",
"webpack-cli": "^2.0.13"
},
"files": [
"pbac.js",
"conditions.js",
"schema.json",
"dist/*"
],
"repository": {
"type": "git",
"url": "monken/node-pbac"
},
"main": "pbac.js",
"author": "Moritz Onken <onken@netcubed.de>",
"license": "MIT"
}