-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
61 lines (61 loc) · 1.68 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
{
"author": {
"email": "[email protected]",
"name": "Mike Marcacci"
},
"bugs": "https://github.com/the-control-group/authx/issues",
"dependencies": {
"@authx/scopes": "^3.1.0-alpha.56",
"@types/cookies": "^0.9.0",
"@types/http-proxy": "^1.17.14",
"@types/jsonwebtoken": "^9.0.6",
"@types/node-fetch": "^2.6.11",
"@types/pg": "^8.11.6",
"abort-controller": "^3.0.0",
"cookies": "^0.9.1",
"http-proxy": "^1.18.1",
"jsonwebtoken": "^9.0.2"
},
"description": "",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"ava": "^6.1.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=6"
},
"files": [
"dist",
"!dist/test.*"
],
"keywords": [
"oauth",
"aim",
"acl",
"access control",
"permissions"
],
"license": "MIT",
"main": "dist",
"name": "@authx/http-proxy-web",
"repository": "https://github.com/the-control-group/authx",
"scripts": {
"format": "prettier --list-different --write '**/*.{json,yml,md,ts}'",
"lint": "prettier -c '**/*.{json,yml,md,ts}' && eslint src --ext ts",
"build": "rm -rf dist && tsc",
"build:development": "rm -rf dist && tsc --watch",
"build:development:chained": "tsc --watch --preserveWatchOutput --pretty",
"test": "ava --verbose dist/*.test.js",
"test:development": "ava --verbose dist/*.test.js --watch",
"prepublishOnly": "npm run build"
},
"type": "module",
"types": "./dist/index.d.ts",
"version": "3.1.0-alpha.56"
}