-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.26 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 for D2L inputs",
"repository": {
"type": "git",
"url": "https://github.com/BrightspaceUI/inputs.git"
},
"name": "@brightspace-ui/inputs",
"scripts": {
"lint": "npm run lint:wc && npm run lint:js",
"lint:js": "eslint . --ext .js,.html demo/**/*.html",
"lint:wc": "polymer lint --rules polymer-3",
"start": "es-dev-server --node-resolve --dedupe --watch --open",
"test": "npm run lint"
},
"author": "D2L Corporation",
"license": "Apache-2.0",
"devDependencies": {
"@webcomponents/webcomponentsjs": "^2",
"babel-eslint": "^10",
"es-dev-server": "^2.1.0",
"eslint": "^6",
"eslint-config-brightspace": "^0.6.0",
"eslint-plugin-html": "^6",
"eslint-plugin-sort-class-members": "^1",
"polymer-cli": "^1"
},
"version": "4.0.0",
"main": "d2l-inputs.js",
"files": [
"d2l-input-checkbox-spacer.js",
"d2l-input-checkbox.js",
"d2l-input-radio-styles.js",
"d2l-input-search.js",
"d2l-input-shared-styles.js",
"d2l-input-text.js",
"d2l-input-textarea.js"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@brightspace-ui/core": "^3",
"@brightspace-ui/typography": "^9",
"@polymer/polymer": "^3.0.0"
}
}