-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"name": "frau-jwt",
"version": "3.1.0",
"description": "Utility to get a JWT from a FRA",
"type": "module",
"main": "src/index.js",
"scripts": {
"lint": "eslint . --ext .js",
"test": "npm run lint && npm run test:headless",
"test:headless": "web-test-runner --files \"./test/**/*.test.js\" --node-resolve"
},
"files": [
"/src"
],
"exports": {
".": "./src/index.js",
"./framed": "./src/framed.js",
"./ifrau-host-plugin": "./src/host.js",
"./local": "./src/local.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Brightspace/frau-jwt.git"
},
"keywords": [
"d2l",
"frau",
"jwt"
],
"author": "D2L Corporation",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Brightspace/frau-jwt/issues"
},
"dependencies": {
"frau-framed": "^1",
"frau-xsrf-token": "^3",
"ifrau": "^0.41"
},
"devDependencies": {
"@babel/eslint-parser": "^7",
"@open-wc/testing": "^3",
"@web/test-runner": "^0.13",
"eslint": "^8",
"eslint-config-brightspace": "^0.18",
"eslint-plugin-html": "^6",
"eslint-plugin-import": "^2",
"eslint-plugin-lit": "^1",
"eslint-plugin-sort-class-members": "^1",
"sinon": "^14"
}
}