-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "@build-security/opa-express-middleware",
"version": "0.0.2",
"description": "Node.js express middleware to authorize API requests using a 3rd party policy engine (OPA). If you're not familiar with OPA, please [learn more](https://www.openpolicyagent.org/).",
"main": "./lib/index.js",
"scripts": {
"test": "jest --collectCoverage"
},
"author": "Amir Ben Nun",
"license": "MIT",
"dependencies": {
"node-fetch": "^2.6.1"
},
"devDependencies": {
"eslint": "^7.12.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jest": "^24.3.5",
"express": "^4.17.1",
"jest": "^26.6.3"
},
"directories": {
"example": "example",
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/build-security/opa-express-middleware.git"
},
"keywords": [
"opa",
"express",
"authorization",
"authz",
"middelware"
],
"bugs": {
"url": "https://github.com/build-security/opa-express-middleware/issues"
},
"homepage": "https://github.com/build-security/opa-express-middleware#readme"
}