-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 2.48 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
55
56
{
"name": "@brightspace-ui/labs",
"description": "A collection of experimental web components and tools for building Brightspace applications.",
"type": "module",
"repository": "https://github.com/BrightspaceUI/labs.git",
"exports": {
"./components/accessibility-disability-simulator.js": "./src/components/accessibility-disability-simulator/accessibility-disability-simulator.js",
"./components/checkbox-drawer.js": "./src/components/checkbox-drawer/checkbox-drawer.js",
"./components/community-button.js": "./src/components/community/community-button.js",
"./components/community-link.js": "./src/components/community/community-link.js",
"./components/community-url-factory.js": "./src/components/community/community-url-factory.js",
"./components/opt-in-flyout.js": "./src/components/opt-in-flyout/opt-in-flyout.js",
"./components/opt-out-flyout.js": "./src/components/opt-in-flyout/opt-out-flyout.js",
"./components/opt-out-reason.js": "./src/components/opt-in-flyout/opt-out-reason.js",
"./components/pager-numeric.js": "./src/components/pagination/pager-numeric.js",
"./controllers/computed-value.js": "./src/controllers/computed-values/computed-value.js",
"./controllers/computed-values.js": "./src/controllers/computed-values/computed-values.js",
"./controllers/language-listener.js": "./src/controllers/language-listener/language-listener.js"
},
"scripts": {
"langs:sync": "mfv add-missing && mfv remove-extraneous",
"langs:sort": "mfv sort",
"lint": "npm run lint:eslint && npm run lint:style",
"lint:eslint": "eslint . --ext .js,.html",
"lint:style": "stylelint \"**/*.{js,html}\"",
"start": "web-dev-server --node-resolve --open --watch",
"test": "npm run lint && npm run test:translations && npm run test:unit && npm run test:axe",
"test:translations": "mfv -e -i untranslated",
"test:axe": "d2l-test-runner axe --chrome",
"test:unit": "d2l-test-runner",
"test:vdiff": "d2l-test-runner vdiff"
},
"author": "D2L Corporation",
"license": "Apache-2.0",
"devDependencies": {
"@brightspace-ui/stylelint-config": "^1",
"@brightspace-ui/testing": "^1",
"@web/dev-server": "^0.3",
"eslint": "^8",
"eslint-config-brightspace": "^1",
"messageformat-validator": "^2",
"stylelint": "^16"
},
"files": [
"labs.serge.json",
"/src"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@brightspace-ui/core": "^3",
"lit": "^3"
},
"version": "2.1.1"
}