forked from adobe/jwt-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 898 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
{
"name": "@adobe/jwt-auth",
"version": "0.2.0",
"description": "Retrieve an authorization token from Adobe via JSON Web Token",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/adobe/jwt-auth.git"
},
"bugs": {
"url": "https://github.com/adobe/jwt-auth/issues"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "eslint test index.js",
"test": "jest"
},
"keywords": [
"jwt"
],
"author": "Adobe Inc.",
"license": "Apache-2.0",
"dependencies": {
"form-data": "^2.3.3",
"jsonwebtoken": "^8.4.0",
"node-fetch": "^2.3.0"
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.1.0",
"prettier": "^1.18.2"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}