-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.07 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
{
"name": "@brightspace-ui/testing",
"description": "Utilities for testing front-end components and applications",
"type": "module",
"version": "1.27.0",
"repository": "https://github.com/BrightspaceUI/testing.git",
"scripts": {
"lint": "npm run lint:eslint && npm run lint:style",
"lint:eslint": "eslint .",
"lint:style": "stylelint \"**/*.{js,html}\" --ignore-path .gitignore",
"test": "npm run lint && npm run test:bin && npm run test:server && npm run test:browser",
"test:bin": "mocha './test/bin/**/*.test.js'",
"test:browser": "npm run test:browser:other && npm run test:browser:ctor",
"test:browser:other": "npx d2l-test-runner --files \"./test/browser/**/*.test.js\"",
"test:browser:ctor": "npx d2l-test-runner --config ./test/browser/ctor.config.js",
"test:server": "mocha './test/server/**/*.test.js'",
"test:vdiff": "npx d2l-test-runner vdiff $npm_config_sub --config ./test/browser/vdiff.config.js"
},
"bin": {
"d2l-test-runner": "./bin/d2l-test-runner.js",
"dtr": "./bin/d2l-test-runner.js"
},
"author": "D2L Corporation",
"license": "Apache-2.0",
"devDependencies": {
"@brightspace-ui/stylelint-config": "^1",
"chai": "^5",
"eslint": "^9",
"eslint-config-brightspace": "^2.0.0",
"mocha": "^11",
"sinon": "^19",
"globals": "^15"
},
"exports": {
".": "./src/browser/index.js"
},
"files": [
"/src"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@brightspace-ui/intl": "^3",
"@open-wc/testing": "^4",
"@rollup/plugin-node-resolve": "^16",
"@web/config-loader": "^0.3",
"@web/dev-server": "^0.4",
"@web/rollup-plugin-html": "^2",
"@web/test-runner": "^0.18",
"@web/test-runner-commands": "^0.9",
"@web/test-runner-playwright": "^0.11",
"command-line-args": "^6",
"command-line-usage": "^7",
"d2l-test-reporting": "^4",
"glob": "^11",
"lit": "^2 || ^3",
"page": "^1",
"pixelmatch": "^6",
"pngjs": "^7",
"rollup": "^4"
},
"overrides": {
"page": {
"path-to-regexp": "^1.9.0"
}
}
}