-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.07 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
{
"name": "@wizsolucoes/wiz-button",
"version": "0.0.0",
"description": "Webcomponent wiz-button following open-wc recommendations",
"author": "wiz-button",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.js",
"unpkg": "dist/wiz-button.js",
"files": [
"dist/"
],
"scripts": {
"start": "concurrently --kill-others --names tsc,es-dev-server \"npm run tsc:watch\" \"es-dev-server --app-index demo/index.html --node-resolve --open --watch\"",
"tsc:watch": "tsc --watch",
"test": "tsc && karma start --coverage",
"test:watch": "concurrently --kill-others --names tsc,karma \"npm run tsc:watch\" \"karma start --auto-watch=true --single-run=false\""
},
"dependencies": {
"@lion/button": "^0.5.12",
"lit-element": "^2.2.1",
"lit-html": "^1.1.2"
},
"devDependencies": {
"@types/node": "13.11.1",
"es-dev-server": "^1.23.0",
"typescript": "^3.8.2",
"concurrently": "^5.1.0",
"tslib": "^1.11.0",
"@open-wc/testing-karma": "^3.0.0",
"deepmerge": "^3.2.0",
"@open-wc/testing": "^2.0.0"
}
}