-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.58 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": "@toznysecure/id-tools",
"version": "2.0.0",
"description": "A Tozny SDK extension for server-side identity applications",
"main": "index.js",
"engines": {
"node": ">= 10"
},
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/tozny/js-id-tools.git"
},
"keywords": [
"tozny",
"encryption",
"security",
"identity",
"server",
"rp",
"oidc"
],
"author": {
"name": "Tozny, LLC",
"email": "[email protected]",
"url": "https://tozny.com"
},
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/tozny/js-id-tools/issues"
},
"homepage": "https://github.com/tozny/js-id-tools#readme",
"devDependencies": {
"@toznysecure/sdk": "^1.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jest": "^24.2.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.2.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^10.5.4",
"nock": "^13.0.11",
"prettier": "^2.2.1",
"uuid": "^8.3.2"
},
"jest": {
"testMatch": [
"**/__tests__/?(*.)+(spec|test).[jt]s?(x)"
],
"automock": false,
"setupFiles": [
"./__tests__/config/setup.js"
],
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"cross-fetch": "^3.1.2",
"jose": "^5.6.3"
}
}