-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.38 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
{
"name": "radar-element",
"version": "3.0.0",
"description": "A component to render a radar visualization consisting of rings, sections and entries.",
"author": {
"name": "Felix Thiele",
"email": "dev@felix-thiele.eu"
},
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.js",
"scripts": {
"start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
"build": "tsc",
"lint": "eslint --ext .ts . --ignore-path .gitignore",
"format": "prettier \"**/*.ts\" --check --ignore-path .gitignore",
"format:fix": "prettier \"**/*.ts\" --write --ignore-path .gitignore",
"prepare": "husky install",
"test": "tsc && wtr --coverage",
"test:watch": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wtr --watch\""
},
"dependencies": {
"lit": "^2.3.1",
"lit-html": "^2.3.1"
},
"devDependencies": {
"@open-wc/testing": "^3.1.6",
"@types/mocha": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"@web/dev-server": "^0.1.34",
"@web/test-runner": "^0.12.20",
"@web/test-runner-puppeteer": "^0.10.5",
"concurrently": "^7.4.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"tslib": "^2.4.0",
"typescript": "^4.8.4"
}
}