-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
57 lines (57 loc) · 1.36 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
{
"description": "Mixins and CSS for applying table styles",
"keywords": [
"d2l",
"polymer",
"table"
],
"repository": {
"type": "git",
"url": "https://github.com/BrightspaceUI/table.git"
},
"name": "@brightspace-ui/table",
"scripts": {
"lint": "npm run lint:js",
"lint:js": "eslint . --ext .js,.html demo/**/*.html",
"test": "npm run lint",
"start": "wds --node-resolve --watch --open demo/"
},
"author": "D2L Corporation",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/eslint-parser": "^7",
"@web/dev-server": "^0.2",
"@webcomponents/webcomponentsjs": "^2",
"eslint": "^7",
"eslint-config-brightspace": "^0.14",
"eslint-plugin-html": "^6",
"eslint-plugin-sort-class-members": "^1.11.0"
},
"version": "4.0.0",
"main": "d2l-table.js",
"files": [
"d2l-scroll-wrapper.js",
"d2l-table-col-sort-button.js",
"d2l-table-observer-behavior.js",
"d2l-table-style.js",
"d2l-table-wrapper.js",
"d2l-table.js",
"d2l-tbody.js",
"d2l-td.js",
"d2l-tfoot.js",
"d2l-th.js",
"d2l-thead.js",
"d2l-tr.js",
"d2l-tspan.js"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@brightspace-ui/core": "^3",
"@polymer/polymer": "^3",
"fastdom": "^1.0.8",
"resize-observer-polyfill": "^1"
}
}