-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
46 lines (46 loc) · 1.16 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
{
"author": "Scott Bedard",
"bugs": {
"url": "https://github.com/scottbedard/svelte-heatmap/issues"
},
"description": "A light weight and customizable version of GitHub's contribution graph",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@rollup/plugin-node-resolve": "^9.0.0",
"babel-jest": "^26.0.1",
"consola": "^2.12.2",
"fs-extra": "^9.0.1",
"jest": "^26.0.1",
"rollup": "^2.13.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-svelte": "^6.0.1",
"rollup-plugin-terser": "^7.0.2",
"svelte": "^3.23.0"
},
"files": [
"src",
"dist"
],
"homepage": "https://github.com/scottbedard/svelte-heatmap",
"keywords": [
"svelte"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"name": "svelte-heatmap",
"repository": {
"type": "git",
"url": "git+https://github.com/scottbedard/svelte-heatmap.git"
},
"svelte": "src/index.js",
"scripts": {
"build": "rollup -c",
"publish:ci": "node ./scripts/publish.js",
"test": "jest",
"watch": "rollup -c -w"
},
"unpkg": "dist/index.umd.min.js",
"version": "1.0.2"
}