-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
54 lines (54 loc) · 1.23 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
{
"name": "ifrau",
"version": "0.41.4",
"description": "Free-range app utility for IFRAME-based FRAs",
"type": "module",
"exports": {
"./client.js": "./client/client.js",
"./client/client.js": "./client/client.js",
"./client/slim.js": "./client/slim.js",
"./host.js": "./host.js"
},
"files": [
"host.js",
"/client",
"/plugins",
"/port"
],
"scripts": {
"lint": "eslint .",
"test:unit": "mocha --recursive --extension test.js",
"test": "npm run lint -s && npm run test:unit -s"
},
"repository": {
"type": "git",
"url": "https://github.com/Brightspace/ifrau.git"
},
"keywords": [
"d2l",
"frau",
"iframe",
"postMessage"
],
"author": "D2L Corporation",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Brightspace/ifrau/issues"
},
"homepage": "https://github.com/Brightspace/ifrau",
"devDependencies": {
"@babel/core": "^7",
"@babel/eslint-parser": "^7",
"@eslint/compat": "^1",
"@eslint/eslintrc": "^3",
"@eslint/js": "^9",
"globals": "^15",
"chai": "^4",
"chai-as-promised": "^8",
"eslint": "^9",
"eslint-config-brightspace": "^2",
"mocha": "^11",
"sinon": "^19",
"sinon-chai": "^3"
}
}