forked from rakannimer/react-google-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.15 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
65
66
67
68
69
70
71
72
73
{
"name": "react-google-charts",
"version": "3.0.15",
"type": "react-component",
"description": "react-google-charts React component",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"jsnext:main": "dist/index.esm.js",
"umd": "dist/index.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"precommit": "lint-staged && npm run test",
"start": "parcel demo/index.html -d demo-build/",
"build": "rollup -c",
"test": "tsc",
"test:e2e": "npm run docz:build && kill-port 5000 && (serve -p 5000 -s --silent docs/ &) && cypress run --record --key 992c387d-9654-42ea-aad7-bb51e16aec9b && kill-port 5000",
"prepublish": "npm run build",
"docz:dev": "docz dev",
"docz:build": "docz build && mkdir docs/react-google-charts && cp -r docs/static docs/react-google-charts/static && mkdir docs/assets/ && cp -r assets/ docs/assets/",
"docz:deploy": "yarn docz:build && cp now.json docs/ && cd docs/ && now && now alias"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
]
},
"dependencies": {
"react-load-script": "^0.0.6"
},
"peerDependencies": {
"prop-types": ">=15",
"react": ">=16.3.0",
"react-dom": ">=16.3.0"
},
"devDependencies": {
"@types/jquery": "^3.3.5",
"@types/react": "^16.4.6",
"@types/react-dom": "^16.0.6",
"cypress": "^3.1.5",
"docz": "^0.10.2",
"docz-theme-default": "^0.10.2",
"husky": "^1.0.0-rc.13",
"jsdoc": "^3.4.0",
"jsdom": "^9.5.0",
"kill-port": "^1.3.2",
"lint-staged": "^7.2.0",
"object-assign": "^4.1.0",
"parcel-bundler": "^1.12.2",
"prettier": "^1.13.7",
"react": "^16.9.0",
"react-component-component": "^1.2.1",
"react-dom": "^16.9.0",
"release": "^6.0.1",
"rollup": "^0.63.5",
"rollup-plugin-typescript2": "^0.19.3",
"typescript": "^3.4.5"
},
"gh-pages-deploy": {
"staticpath": "demo/dist/"
},
"author": "Rakan Nimer",
"homepage": "https://rakannimer.github.io/react-google-charts/",
"license": "MIT",
"repository": "https://github.com/RakanNimer/react-google-charts",
"keywords": [
"react",
"google",
"charts"
],
"files": [
"dist/"
]
}