-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
76 lines (76 loc) · 2.56 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@brightspace-ui/core",
"version": "3.79.2",
"description": "A collection of accessible, free, open-source web components for building Brightspace applications",
"type": "module",
"repository": "https://github.com/BrightspaceUI/core.git",
"publishConfig": {
"access": "public"
},
"scripts": {
"build:clean": "node ./cli/clean.js",
"build:icons": "node ./cli/icon-generator.js",
"build:illustrations": "node ./cli/empty-state-illustration-generator.js",
"build:sass": "sass ./test/sass.scss > ./test/sass.output.css",
"build:wca": "wca analyze \"{components,templates}/**/*.js\" --format json --outFile custom-elements.json",
"build": "npm run build:clean && npm run build:icons && npm run build:illustrations && npm run build:sass && npm run build:wca",
"build-static": "rollup -c ./rollup/rollup.config.js",
"lint": "npm run lint:eslint && npm run lint:style",
"lint:eslint": "eslint .",
"lint:style": "stylelint \"**/*.{js,html}\" --ignore-path .gitignore",
"start": "web-dev-server --node-resolve --watch --open",
"test": "npm run lint && npm run test:translations && npm run test:unit && npm run test:axe",
"test:axe": "d2l-test-runner axe --chrome",
"test:unit": "d2l-test-runner",
"test:translations": "mfv -e -s en -p ./lang/ -i untranslated",
"test:vdiff": "d2l-test-runner vdiff --timeout 10000",
"test:wca": "node ./cli/validate-wca.js"
},
"files": [
"custom-elements.json",
"/components",
"/controllers",
"/directives",
"/generated",
"/helpers",
"/lang",
"/mixins",
"/templates",
"/tools",
"!demo",
"!test",
"/components/demo",
"!/components/demo/demo"
],
"author": "D2L Corporation",
"license": "Apache-2.0",
"devDependencies": {
"@brightspace-ui/stylelint-config": "^1",
"@brightspace-ui/testing": "^1",
"@rollup/plugin-dynamic-import-vars": "^2",
"@rollup/plugin-node-resolve": "^16",
"@rollup/plugin-replace": "^6",
"@web/dev-server": "^0.4",
"chalk": "^5",
"eslint": "^9",
"eslint-config-brightspace": "^2.0.0",
"glob-all": "^3",
"messageformat-validator": "^2",
"rollup": "^4",
"rollup-plugin-copy": "^3",
"rollup-plugin-delete": "^2",
"sass": "^1",
"sinon": "^19",
"stylelint": "^16",
"web-component-analyzer": "^2"
},
"dependencies": {
"@brightspace-ui/intl": "^3",
"@brightspace-ui/lms-context-provider": "^1",
"@open-wc/dedupe-mixin": "^1",
"ifrau": "^0.41",
"lit": "^3",
"prismjs": "^1",
"resize-observer-polyfill": "^1"
}
}