-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 998 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
{
"name": "@brightspace-ui/lms-context-provider",
"description": "Provides LMS context and environment settings to UI components, applications and libraries",
"type": "module",
"version": "1.14.0",
"repository": "https://github.com/BrightspaceUI/lms-context-provider.git",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "npm run lint:eslint",
"lint:eslint": "eslint",
"test": "npm run test:unit",
"test:unit": "d2l-test-runner --files ./test/**/*.test.js"
},
"author": "D2L Corporation",
"license": "Apache-2.0",
"devDependencies": {
"@brightspace-ui/testing": "^1",
"@eslint/compat": "^1",
"@eslint/eslintrc": "^3",
"@eslint/js": "^9",
"eslint": "^9",
"eslint-config-brightspace": "^1",
"sinon": "^19"
},
"exports": {
"./host.js": "./src/host/host.js",
"./client.js": "./src/client/client.js",
"./test-helpers/test-host.js": "./src/test-helpers/test-host.js"
},
"files": [
"/src"
]
}