-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.58 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
{
"name": "d2l-image",
"version": "4.0.0",
"description": "A Lit web component to render images requiring authentication",
"keywords": [
"d2l",
"image"
],
"main": "d2l-image.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Brightspace/d2l-image.git"
},
"homepage": "https://github.com/Brightspace/d2l-image#readme",
"scripts": {
"lint": "npm run lint:eslint && npm run lint:style && npm run lint:lit",
"lint:eslint": "eslint . --ext .js,.html",
"lint:lit": "lit-analyzer \"{components,test}/**/*.js\" --strict --rules.no-unknown-tag-name off",
"lint:style": "stylelint \"**/*.{js,html}\"",
"start": "web-dev-server --open demo/ --node-resolve --watch",
"test": "npm run lint && npm run test:headless",
"test:headless": "web-test-runner --files \"./test/**/*.test.js\" --node-resolve"
},
"files": [
"d2l-image.js"
],
"bugs": {
"url": "https://github.com/Brightspace/d2l-image/issues"
},
"author": "D2L Corporation",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7",
"@babel/eslint-parser": "^7",
"@brightspace-ui/core": "^3",
"@brightspace-ui/stylelint-config": "^0.8",
"@open-wc/testing": "^4",
"@web/dev-server": "^0.4",
"@web/test-runner": "^0.18",
"eslint": "^8",
"eslint-config-brightspace": "^1.1",
"eslint-plugin-html": "^7",
"eslint-plugin-import": "^2",
"eslint-plugin-lit": "^1",
"eslint-plugin-sort-class-members": "^1",
"lit-analyzer": "^2",
"sinon": "^17",
"stylelint": "^15"
},
"dependencies": {
"lit": "^3"
}
}