-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
43 lines (43 loc) · 970 Bytes
/
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
{
"name": "@adobe/jwt-auth",
"version": "2.0.0",
"description": "Retrieve an authorization token from Adobe via JSON Web Token",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/adobe/jwt-auth.git"
},
"bugs": {
"url": "https://github.com/adobe/jwt-auth/issues"
},
"engines": {
"node": "^14.18 || ^16.13 || >=18"
},
"scripts": {
"lint": "eslint test index.js",
"test": "jest"
},
"keywords": [
"jwt"
],
"author": "Adobe Inc.",
"license": "Apache-2.0",
"dependencies": {
"form-data": "^3.0.0",
"jsonwebtoken": "^9.0.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-utils": ">=1.4.1",
"jest": "^29.5.0",
"prettier": "^2.0.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}