forked from Authress/authress-sdk.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.92 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "authress-sdk",
"version": "0.0.0",
"description": "Client SDK for Authress authorization as a service. Provides managed authorization api to secure service resources including user data.",
"main": "./index.js",
"types": "./index.d.ts",
"files": [
"index.js",
"index.d.ts",
"src"
],
"scripts": {
"lint": "check-dts index.d.ts && eslint --ext .js,.ts tests src make.js index.js index.d.ts",
"test": "mocha tests/**/*.test.js -R spec"
},
"dependencies": {
"axios": "^0.21",
"base64url": "^3.0.1",
"jose": "^4.8.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"chai": "^4.2.0",
"check-dts": "^0.4.4",
"ci-build-tools": "^1.0.13",
"commander": "^4.0.1",
"eslint": "^8.14.0",
"eslint-config-cimpress-atsquad": "^1.0.67",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"mocha": "^10.1.0",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0",
"travis-build-tools": "~1.2",
"typescript": "^4.5.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Authress/authress-sdk.js"
},
"keywords": [
"authorization",
"authorization as a service",
"authentication",
"user authentication",
"Authress",
"Authress client",
"access management",
"access management as a service",
"user security",
"oso",
"polar",
"open source policy engine",
"embedded authorization",
"batteries included authorization"
],
"author": "Authress Developers <[email protected]> (https://authress.io)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Authress/authress-sdk.js/issues"
},
"homepage": "https://authress.io",
"engines": {
"node": ">=14"
}
}