forked from CommunitySolidServer/access-token-verifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.3 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
77
78
{
"name": "@solid/identity-token-verifier",
"version": "0.6.2",
"description": "Verifies Solid access tokens via their WebID claim, and thus asserts ownership of WebIDs.",
"license": "MIT",
"keywords": [
"Token verification",
"Solid Identity",
"Access Token",
"DPoP",
"OAuth"
],
"contributors": [
"Matthieu Bosquet <[email protected]> (https://github.com/matthieubosquet/)"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint --cache --fix --ignore-path .gitignore .",
"lint:prettier": "prettier --ignore-path .gitignore --write '**/*.{css,md,mdx}'",
"lint:staged": "lint-staged",
"prepublishOnly": "npm ci && pinst --disable && npm run build",
"postpublish": "pinst --enable",
"postinstall": "[[ -n \"$CI\" ]] || husky install",
"test": "jest"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solid/identity-token-verifier.git"
},
"bugs": {
"url": "https://github.com/solid/identity-token-verifier/issues"
},
"homepage": "https://github.com/solid/identity-token-verifier#readme",
"devDependencies": {
"@solid/eslint-config-base": "^0.1.8",
"@tsconfig/node12": "^1.0.7",
"@types/jest": "^26.0.20",
"@types/lru-cache": "^5.1.0",
"@types/node": "^12.19.12",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.0.6",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"lint-staged": "^10.5.3",
"pinst": "^2.1.1",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"dependencies": {
"cross-fetch": "^3.0.6",
"jose": "^3.6.2",
"lru-cache": "^6.0.0",
"n3": "^1.8.0",
"nmspc": "^0.2.4",
"rdf-data-factory": "^1.0.4",
"rdf-dereference": "^1.7.0",
"rdf-parse": "^1.7.0",
"rdf-store-stream": "^1.1.0",
"ts-guards": "^0.5.1"
}
}