-
Notifications
You must be signed in to change notification settings - Fork 300
/
Copy pathpackage.json
113 lines (113 loc) · 3.3 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "cal-heatmap",
"version": "4.3.0-beta.4",
"description": "Cal-Heatmap is a javascript module to create calendar heatmap to visualize time series data",
"keywords": [
"calendar",
"graph",
"d3js",
"heat map"
],
"type": "module",
"exports": {
".": {
"import": "./dist/cal-heatmap.esm.js",
"require": "./dist/cal-heatmap.js",
"types": "./src/types.d.ts"
},
"./package.json": "./package.json",
"./cal-heatmap.css": "./dist/cal-heatmap.css"
},
"directories": {
"test": "test"
},
"types": "./src/types.d.ts",
"node": ">=14.16",
"browserslist": "last 2 versions, not dead, > 0.2%",
"dependencies": {
"@observablehq/plot": "^0.6.0",
"core-js": "^3.35.1",
"d3-color": "^3.1.0",
"d3-fetch": "^3.0.1",
"d3-selection": "^3.0.0",
"d3-transition": "^3.0.1",
"dayjs": "^1.11.7",
"eventemitter3": "^5.0.0",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/d3": "^7.4.3",
"@types/jest": "^29.2.4",
"@types/lodash-es": "^4.17.6",
"@types/selenium-webdriver": "^4.1.10",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"autoprefixer": "^10.4.13",
"browserslist": "^4.21.4",
"browserstack-local": "^1.5.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-jest": "^27.1.5",
"jest": "^29.3.1",
"jest-dev-server": "^10.0.0",
"jest-environment-jsdom": "^29.3.1",
"jsdom": "^24.0.0",
"postcss": "^8.4.20",
"prettier": "^3.0.0",
"puppeteer": "^22.0.0",
"rollup": "^4.0.0",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-postcss": "^4.0.2",
"sass": "^1.56.1",
"selenium-webdriver": "^4.7.1",
"ts-jest": "^29.0.3",
"tsd": "^0.30.0",
"typescript": "^5.0.0"
},
"scripts": {
"prepare": "npm run build && npm test",
"format": "npm run lint -- --fix",
"lint": "npx eslint src/ test/",
"build": "rm -rf dist/* && rollup -c",
"dev": "rollup --config -w",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest test/",
"test:e2e": "node --experimental-vm-modules ./node_modules/.bin/jest -c jest-e2e.config.mjs test/",
"test:e2e:local": "LOCAL=1 node --experimental-vm-modules ./node_modules/.bin/jest -c jest-e2e.config.mjs test/",
"tsd": "npx tsd --files test/index.test-d.ts",
"typecheck": "npx tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/wa0x6e/cal-heatmap.git"
},
"homepage": "https://cal-heatmap.com",
"author": {
"name": "Wan Qi Chen",
"url": "https://github.com/wa0x6e"
},
"license": "MIT",
"bugs": "https://github.com/wa0x6e/cal-heatmap/issues",
"categories": [
"Data",
"Visualization"
],
"files": [
"dist",
"src/types.d.ts"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}