-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.75 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
79
80
81
82
83
84
85
86
87
88
{
"name": "@validatedid/did-auth",
"version": "2.0.0",
"description": "Validated ID Authentication library that implements an OIDC-SIOP with DIDs",
"author": "Validated ID",
"license": "Apache-2.0",
"repository": {
"type": "github",
"url": "https://github.com/validatedid/did-auth-oidc-siop.git"
},
"keywords": [
"Authentication",
"DID-Auth",
"SIOP",
"OIDC",
"DID-SIOP"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"audit": "audit-ci --moderate",
"prepare": "npm run build",
"build": "npm run clean && tsc -p tsconfig.build.json",
"clean": "rm -rf ./dist ./coverage",
"compile": "tsc",
"compile:dev": "tsc -w",
"coverage": "jest --coverage",
"lint-staged": "lint-staged",
"lint": "eslint 'src/**/*.{js,ts,tsx}' 'tests/**/*.{js,ts,tsx}' --quiet",
"full-lint": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx}' --quiet --fix && prettier --write 'src/**/*.{js,ts,tsx}'",
"format": "prettier --write 'src/**/*.{js,ts,tsx}' 'tests/**/*.{js,ts,tsx}'",
"release": "standard-version",
"test": "jest --runInBand --verbose false --detectOpenHandles --forceExit",
"test:watch": "jest --watch",
"test:unit": "jest --runInBand --testPathIgnorePatterns=e2e --verbose false --detectOpenHandles --forceExit",
"test:e2e": "jest --runInBand --testPathPattern=unit --verbose false --detectOpenHandles --forceExit",
"clearCache": "jest --clearCache"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@tsconfig/node10": "^1.0.7",
"@types/elliptic": "^6.4.12",
"@types/jest": "^26.0.15",
"@types/node": "^10.17.44",
"@types/sha.js": "^2.4.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"audit-ci": "^3.1.1",
"dotenv": "^8.2.0",
"eslint": "^7.12.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.6.2",
"jest-junit": "^12.0.0",
"jose": "^2.0.3",
"lint-staged": "^10.5.1",
"moment": "^2.29.1",
"prettier": "^2.1.2",
"standard-version": "^9.0.0",
"ts-jest": "^26.4.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"dependencies": {
"@validatedid/vid-did-resolver": "0.0.1",
"axios": "^0.21.0",
"did-jwt": "^4.6.2",
"did-resolver": "^2.1.1",
"elliptic": "^6.5.3",
"ethers": "^5.0.19",
"sha.js": "^2.4.11",
"uuid": "^8.3.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}