-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
76 lines (76 loc) · 2.69 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
72
73
74
75
76
{
"name": "@solid/access-token-verifier",
"version": "2.1.0",
"description": "Verifies Solid OIDC access tokens via their webid claim, and thus asserts ownership of a WebID.",
"license": "MIT",
"repository": "https://github.com/solid/access-token-verifier",
"bugs": "https://github.com/solid/access-token-verifier/issues",
"homepage": "https://github.com/solid/access-token-verifier#readme",
"keywords": [
"Solid",
"OIDC",
"Access Token",
"Token Verification",
"DPoP",
"Bearer",
"Token",
"OAuth"
],
"contributors": [
"Matthieu Bosquet <matthieu@cognithive.com> (https://github.com/matthieubosquet/)",
"Joachim Van Herwegen <joachim.vanherwegen@ugent.be> (https://github.com/joachimvh)",
"Ruben Verborgh <ruben@verborgh.org> (https://github.com/RubenVerborgh)"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"audit": "npm audit --production --audit-level=moderate",
"build": "tsc",
"lint": "npm run lint:eslint -- --cache --fix && npm run lint:licenses && npm run lint:prettier -- --write",
"lint:ci": "npm run lint:eslint && npm run lint:licenses && npm run lint:prettier -- --check",
"lint:eslint": "eslint --ignore-path .gitignore .",
"lint:licenses": "license-checker --production --onlyAllow 'Apache; BSD; ISC; MIT'",
"lint:prettier": "prettier '**/*.{css,html,json,md,mdx,yml}' --ignore-path .gitignore",
"prepublishOnly": "npm run audit && npm ci --ignore-scripts && npm run build && npm run test",
"start": "npm run build -- --watch",
"test": "npm run test:unit",
"test:e2e": "jest --config .jestrc.js --testPathPattern='e2e' --no-coverage",
"test:unit": "jest --config .jestrc.js --testPathPattern='unit'"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@rdfjs/types": "^1.1.0",
"@solid/eslint-config-base": "^0.6.0",
"@tsconfig/node18": "^18.2.2",
"@types/jest": "^29.5.5",
"@types/lru-cache": "^5.1.1",
"@types/n3": "^1.16.1",
"@types/node": "^20.7.1",
"@types/node-fetch": "^2.6.6",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"license-checker": "^25.0.1",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"jose": "^5.1.3",
"lru-cache": "^6.0.0",
"n3": "^1.17.1",
"node-fetch": "^2.7.0",
"ts-guards": "^0.5.1"
}
}