-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.59 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
{
"name": "webid-provider-tests",
"description": "A test suite with some basic happy-path checks against a DPop-based WebID-OIDC provider",
"version": "2.1.1",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "echo nothing to build",
"jest": "jest",
"test": "npm run lint",
"lint": "eslint test/ --ext .ts",
"local": "NODE_TLS_REJECT_UNAUTHORIZED=0 SERVER_ROOT=https://localhost ALICE_WEBID=https://localhost/profile/card#me npm run jest",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solid/webid-provider-tests.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/solid/webid-provider-tests/issues"
},
"homepage": "https://github.com/solid/webid-provider-tests#readme",
"dependencies": {
"@types/debug": "^4.1.5",
"@types/node": "^14.14.22",
"@types/node-fetch": "^2.5.8",
"@types/ws": "^7.4.0",
"debug": "^4.3.1",
"isomorphic-webcrypto": "^2.3.6",
"jest": "^26.6.3",
"jsonwebtoken": "^8.5.1",
"node-fetch": "^2.6.1",
"node-rsa": "^1.1.1",
"rdf-namespaces": "^1.9.2",
"solid-auth-client": "^2.5.5",
"solid-auth-fetcher": "^1.3.5",
"tripledoc": "^4.4.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/jest": "26.0.20",
"@typescript-eslint/eslint-plugin": "4.14.1",
"@typescript-eslint/parser": "4.14.1",
"eslint": "7.18.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "3.3.1",
"prettier": "2.2.1"
}
}