forked from authzed/authzed-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.31 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
{
"name": "@authzed/authzed-node",
"author": "authzed",
"version": "0.7.0",
"description": "authzed client for nodejs",
"keywords": [
"authorization",
"authzed",
"fine-grained-authorization",
"open-source",
"permissions",
"spicedb",
"zanzibar"
],
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": "https://github.com/authzed/authzed-node",
"license": "Apache-2.0",
"private": false,
"scripts": {
"test": "./scripts/run-and-test.sh",
"only-run-tests": "ts-node node_modules/jasmine/bin/jasmine --config=jasmine.json",
"buf": "./buf.gen.yaml",
"lint": "./node_modules/.bin/eslint src",
"build": "tsc",
"prepublish": "yarn build",
"build-js-client": "tsc --target es2018 --declaration false --outDir js-dist"
},
"dependencies": {
"@grpc/grpc-js": "^1.2.8",
"@protobuf-ts/runtime": "^2.1.0",
"@protobuf-ts/runtime-rpc": "^2.1.0",
"google-protobuf": "^3.15.3"
},
"devDependencies": {
"@types/jasmine": "^3.10.0",
"@protobuf-ts/plugin": "^2.0.7",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^7.31.0",
"grpc-tools": "^1.11.2",
"jasmine": "^3.6.4",
"ts-node": "^10.3.0",
"typescript": "^3.8"
}
}