-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1.09 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
{
"name": "@brightspace-ui-labs/autocomplete",
"description": "Web component for integrating autocomplete with text inputs",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/BrightspaceUILabs/autocomplete.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"autocomplete-input-text.js"
],
"scripts": {
"lint": "npm run lint:eslint && npm run lint:style",
"lint:eslint": "eslint . --ext .js,.html",
"lint:style": "stylelint \"**/*.{js,html}\"",
"start": "web-dev-server --app-index demo/index.html --node-resolve --open --watch",
"test": "npm run lint && npm run test:unit",
"test:unit": "d2l-test-runner"
},
"author": "D2L Corporation",
"license": "Apache-2.0",
"devDependencies": {
"@brightspace-ui/stylelint-config": "^1",
"@brightspace-ui/testing": "^1",
"@web/dev-server": "^0.4",
"eslint": "^8",
"eslint-config-brightspace": "^1",
"stylelint": "^16"
},
"version": "5.0.0",
"main": "autocomplete.js",
"dependencies": {
"@brightspace-ui/core": "^3",
"lit": "^3.2.1"
}
}