-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.32 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
{
"name": "fga-cli",
"version": "1.0.0",
"description": "A simple OpenFGA cli.REPL tool to make FGA more accessible",
"main": "dist/src/index.js",
"scripts": {
"compile": "npm install && rimraf dist && tsc --outDir dist/",
"dev": "ts-node ./src/index.ts",
"test": "jest --config ./tests/jest.config.js",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArcticGizmo/fga-cli.git"
},
"keywords": [
"cli",
"FGA",
"OpenFGA"
],
"author": "",
"license": "MIT",
"dependencies": {
"@openfga/sdk": "^0.1.1",
"@openfga/syntax-transformer": "^0.0.8",
"cli-color": "^2.0.3",
"commander": "^9.2.0"
},
"devDependencies": {
"@types/jest": "^29.1.0",
"@types/node": "^18.7.23",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"jest": "^29.1.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"bin": {
"fga-cli": "./bin/cli.js"
},
"bugs": {
"url": "https://github.com/ArcticGizmo/fga-cli/issues"
},
"homepage": "https://github.com/ArcticGizmo/fga-cli#readme",
"files": [
"bin/",
"dist/",
"LICENSE",
"README.md"
]
}