-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 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
{
"description": "Polymer-based web components and Sass mixins for D2L buttons",
"repository": {
"type": "git",
"url": "https://github.com/BrightspaceUI/button.git"
},
"name": "@brightspace-ui/button",
"scripts": {
"build:sass": "node-sass --output-style expanded ./test/button.css.scss ./test/button.css",
"lint": "npm run lint:js",
"lint:js": "eslint . --ext .js,.html demo/**/*.html",
"start": "web-dev-server --node-resolve --watch",
"test": "npm run lint && npm run build:sass"
},
"author": "D2L Corporation",
"license": "Apache-2.0",
"devDependencies": {
"@babel/eslint-parser": "^7",
"@web/dev-server": "^0.1",
"eslint": "^8",
"eslint-config-brightspace": "^0.16",
"eslint-plugin-html": "^6",
"eslint-plugin-import": "^2",
"eslint-plugin-lit": "^1",
"eslint-plugin-sort-class-members": "^1",
"node-sass": "^7"
},
"version": "6.2.1",
"main": "d2l-button.js",
"files": [
"d2l-button-behavior.js",
"d2l-button-icon.js",
"d2l-button-shared-styles.js",
"d2l-button-subtle.js",
"d2l-button.js",
"d2l-button.scss",
"d2l-floating-buttons.js"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@brightspace-ui/core": "^2",
"@polymer/polymer": "^3.0.0"
}
}