-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.23 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
{
"name": "@axiomatics/xacml-node",
"version": "1.0.11",
"description": "An SDK to send and receive fine-grained authorization requests that conform to the XACML 3.0 JSON & REST profiles.",
"main": "build/src/index.js",
"types": ".d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf ./build && tsc",
"start": "node build/src/index.js",
"dev": "nodemon ./src/index.ts",
"tsc": "tsc --noEmit --incremental",
"prepublish": "npm run build",
"release": "npm version patch && git push --follow-tags"
},
"keywords": [
"authorization",
"xacml",
"abac",
"cedar",
"authzen",
"alfa",
"access control"
],
"author": "David Brossard",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/davidjbrossard/xacml-node.git"
},
"dependencies": {
"axios": "^1.6.8"
},
"devDependencies": {
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/davidjbrossard/xacml-node/issues"
},
"homepage": "https://github.com/davidjbrossard/xacml-node#readme",
"directories": {
"test": "test"
}
}