@spinajs/rbac-http-admin 2.0.133
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -0
- package/package.json +69 -0
package/README.md
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@spinajs/rbac-http-admin",
|
|
3
|
+
"version": "2.0.133",
|
|
4
|
+
"description": "HTTP API for administration of users and permissions",
|
|
5
|
+
|
|
6
|
+
"main": "lib/cjs/index.js",
|
|
7
|
+
"module": "lib/mjs/index.js",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./lib/mjs/index.js",
|
|
11
|
+
"require": "./lib/cjs/index.js"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"type": "module",
|
|
15
|
+
"private": false,
|
|
16
|
+
"engines": {
|
|
17
|
+
"node": ">=16.11"
|
|
18
|
+
},
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "npm run clean && npm run compile",
|
|
21
|
+
"compile": "tsc -b tsconfig.mjs.json",
|
|
22
|
+
"compile:cjs": "tsc -b tsconfig.cjs.json",
|
|
23
|
+
"rimraf": "./node_modules/rimraf/bin.js",
|
|
24
|
+
"clean": "rimraf lib/ && rimraf tsconfig.tsbuildinfo",
|
|
25
|
+
"test": "ts-mocha -p tsconfig.json test/**/*.test.ts",
|
|
26
|
+
"coverage": "nyc npm run test",
|
|
27
|
+
"build-docs": "rimraf docs && typedoc --options typedoc.json src/",
|
|
28
|
+
"format": "prettier --write \"src/**/*.ts\"",
|
|
29
|
+
"lint": "eslint -c .eslintrc.cjs --ext .ts src --fix",
|
|
30
|
+
"preversion": "npm run lint",
|
|
31
|
+
"version": "npm run format && git add -A src"
|
|
32
|
+
|
|
33
|
+
},
|
|
34
|
+
"files": [
|
|
35
|
+
"lib/**/*"
|
|
36
|
+
],
|
|
37
|
+
|
|
38
|
+
"repository": {
|
|
39
|
+
"type": "git",
|
|
40
|
+
"url": "git+https://github.com/spinajs/main.git"
|
|
41
|
+
},
|
|
42
|
+
"keywords": [
|
|
43
|
+
"spinajs",
|
|
44
|
+
"rbac"
|
|
45
|
+
],
|
|
46
|
+
"author": "SpinaJS <spinajs@coderush.pl> (https://github.com/spinajs/main)",
|
|
47
|
+
"license": "MIT",
|
|
48
|
+
"bugs": {
|
|
49
|
+
"url": "https://github.com/spinajs/main/issues"
|
|
50
|
+
},
|
|
51
|
+
"homepage": "https://github.com/spinajs/main#readme",
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"@spinajs/configuration": "^2.0.133",
|
|
54
|
+
"@spinajs/di": "^2.0.133",
|
|
55
|
+
"@spinajs/exceptions": "^2.0.133",
|
|
56
|
+
"@spinajs/http": "^2.0.133",
|
|
57
|
+
"@spinajs/log": "^2.0.133",
|
|
58
|
+
"@spinajs/orm": "^2.0.133",
|
|
59
|
+
"@spinajs/orm-http": "^2.0.133",
|
|
60
|
+
"@spinajs/rbac": "^2.0.133",
|
|
61
|
+
"@spinajs/rbac-http": "^2.0.133",
|
|
62
|
+
"luxon": "^3.2.1",
|
|
63
|
+
"uuid": "^9.0.0"
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@spinajs/orm-sqlite": "^2.0.133"
|
|
67
|
+
},
|
|
68
|
+
"gitHead": "002dc553b0ffffd72193d0121ac425a4083bc9ee"
|
|
69
|
+
}
|