forked from GoogleWebComponents/google-chart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.59 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
57
58
59
60
61
62
63
64
{
"description": "Encapsulates Google Charts into a web component",
"keywords": [
"web-component",
"web-components",
"polymer",
"lit-element",
"chart",
"charts",
"google-visualization",
"google"
],
"homepage": "https://googlewebcomponents.github.io/google-chart",
"repository": "GoogleWebComponents/google-chart",
"name": "@google-web-components/google-chart",
"version": "5.1.0",
"resolutions": {
"inherits": "2.0.3",
"samsam": "1.1.3",
"supports-color": "3.1.2",
"type-detect": "1.0.0"
},
"type": "module",
"main": "google-chart.js",
"module": "google-chart.js",
"files": [
"google-chart.d.ts*",
"google-chart.js*",
"loader.d.ts*",
"loader.js*"
],
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"build:watch": "tsc --watch",
"start": "web-dev-server --app-index demo/index.html --node-resolve --open --watch",
"pretest": "npm run build",
"test": "web-test-runner",
"test:watch": "web-test-runner --watch"
},
"contributors": [
"Wes Alvaro",
"Sérgio Gomes",
"Rafal Slawik"
],
"license": "Apache-2.0",
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@open-wc/testing": "^4.0.0",
"@polymer/decorators": "^3.0.0",
"@polymer/polymer": "^3.5.1",
"@types/google.visualization": "0.0.74",
"@types/mocha": "^10.0.6",
"@web/dev-server": "^0.4.4",
"@web/test-runner": "^0.18.1",
"sinon": "^17.0.1",
"typescript": "^5.4.5"
},
"typings": "google-chart.d.ts",
"dependencies": {
"lit": "^3.1.3",
"safevalues": "^0.5.2"
}
}