forked from uiwjs/react-heat-map
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.39 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.39 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@uiw/react-heat-map",
"version": "2.0.0",
"description": "React component create calendar heatmap to visualize time series data, a la github contribution graph.",
"homepage": "https://uiwjs.github.io/react-heat-map/",
"main": "cjs/index.js",
"module": "esm/index.js",
"scripts": {
"prepare": "npm run build",
"doc": "kkt build --app-src ./website",
"start": "kkt start --app-src ./website",
"css:build": "compile-less -d src -o esm",
"css:watch": "compile-less -d src -o esm --watch",
"css:build:dist": "compile-less -d src --combine dist.css --rm-global",
"watch": "tsbb watch & npm run css:watch",
"build": "tsbb build && npm run css:build && npm run css:build:dist",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"type-check": "tsc --noEmit",
"map": "source-map-explorer build/static/js/*.js --html build/website-result.html"
},
"repository": {
"type": "git",
"url": "https://github.com/uiwjs/react-heat-map.git"
},
"author": "kenny wong <wowohoo@qq.com>",
"license": "MIT",
"keywords": [
"react",
"heat-map",
"react-heat-map",
"uiw",
"uiwjs",
"code"
],
"lint-staged": {
"*.{js,jsx,tsx,ts,less,md,json}": [
"prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\""
]
},
"files": [
"dist.css",
"cjs",
"esm"
],
"peerDependencies": {
"@babel/runtime": ">=7.10.0",
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"devDependencies": {
"@kkt/less-modules": "7.0.5",
"@kkt/raw-modules": "7.0.5",
"@kkt/scope-plugin-options": "7.0.5",
"@types/react": "17.0.38",
"@types/react-dom": "17.0.11",
"@uiw/react-code-preview": "3.0.0",
"@uiw/react-github-corners": "1.5.3",
"@uiw/react-markdown-preview": "3.4.7",
"@uiw/react-tooltip": "4.9.7",
"@uiw/reset.css": "1.0.5",
"compile-less-cli": "1.8.11",
"husky": "7.0.4",
"kkt": "7.0.5",
"lint-staged": "11.2.6",
"prettier": "2.5.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"source-map-explorer": "2.5.2",
"tsbb": "3.5.4"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}