-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
61 lines (61 loc) · 1.49 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
{
"name": "reactjs-calendar-heatmap",
"version": "0.2.3",
"description": "React component for d3.js calendar heatmap graph.",
"homepage": "https://github.com/g1eb/reactjs-calendar-heatmap#readme",
"author": "g1eb <[email protected]> (https://g1eb.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/g1eb/reactjs-calendar-heatmap.git"
},
"bugs": {
"url": "https://github.com/g1eb/reactjs-calendar-heatmap/issues"
},
"scripts": {
"clean": "rm -rf dist/*",
"build": "webpack",
"start": "webpack --watch"
},
"main": "dist/calendar-heatmap.min.js",
"module": "dist/calendar-heatmap.min.js",
"jsnext:main": "dist/calendar-heatmap.min.js",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^6.5.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"style-loader": "^2.0.0",
"uglify-js": "^3.1.5",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1"
},
"peerDependencies": {
"d3": "^7.4.4",
"moment": "^2.29.3",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"engines": {
"node": ">=6.0.0"
},
"license": "MIT",
"keywords": [
"react",
"reactjs",
"component",
"calendar",
"heatmap",
"graph",
"visualization",
"chart",
"time",
"d3js",
"d3"
]
}