-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.11 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": "trivialperms",
"version": "2.0.0-beta.0",
"description": "A simple RBAC implementation that is datasource agnostic.",
"main": "./dist/trivialperms.js",
"types": "dist/trivialperms.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"test": "ts-mocha -p tsconfig.json test/**/*.spec.ts",
"lint": "eslint --ext *.ts src/*.ts test/*.ts"
},
"keywords": [
"json",
"rbac",
"permissions",
"roles"
],
"author": "Christopher S. Case <chris.case@g33xnexus.com>",
"bugs": "https://github.com/trivialsoftware/trivial-permissions/issues",
"homepage": "http://trivialsoftware.github.io/trivial-permissions/",
"repository": {
"type": "git",
"url": "https://github.com/trivialsoftware/trivial-permissions.git"
},
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"ts-mocha": "^10.0.0",
"typescript": "^4.9.5"
}
}