-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.44 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
47
48
49
50
51
52
53
54
55
56
{
"name": "lit-line",
"version": "0.3.3",
"license": "MIT",
"contributors": [
"Adrien Pinet"
],
"description": "SVG line chart web component based on lit-html. Fast, small, reactive, responsive.",
"keywords": [
"svg",
"chart",
"webcomponent",
"data",
"graph",
"lit-html",
"es6"
],
"repository": {
"type": "git",
"url": "https://github.com/apinet/lit-line.git"
},
"bugs": {
"url": "https://github.com/apinet/lit-line/issues"
},
"files": [
"dist",
"cdn"
],
"main": "dist/lit-line.js",
"module": "dist/lit-line.js",
"types": "dist/lit-line.d.ts",
"scripts": {
"clean": "rm -fr dist cdn",
"test": "npm run clean && esbuild test/*.spec.ts --outdir=dist --bundle && karma start karma.conf.cjs",
"demo": "npm run clean && mkdir dist && cp ./demo/index.html dist && esbuild ./demo/demo-app.ts --bundle --outdir=dist --servedir=dist",
"build:cdn": "node ./build.cdn.js",
"build:dist": "tsc",
"build": "npm run clean && npm run build:cdn && npm run build:dist"
},
"peerDependencies": {
"lit-html": "^3.2.1"
},
"devDependencies": {
"@types/jasmine": "^5.1.5",
"esbuild": "^0.24.0",
"jasmine": "^5.5.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-jasmine": "^5.1.0",
"karma-spec-reporter": "^0.0.36",
"karma-typescript": "^5.5.4",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
},
"type": "module"
}