-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.42 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.42 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
{
"name": "@gramex/chartbase",
"version": "1.0.4",
"description": "Base utilities for charts",
"type": "module",
"module": "dist/chartbase.js",
"main": "dist/chartbase.min.js",
"scripts": {
"docs": "npx -y documentation build chartbase.js --markdown-toc false -f md | npx -y prettier --parser markdown > docs/api.md",
"watch": "npx -y esbuild chartbase.js --format=esm --bundle --minify --allow-overwrite --sourcemap --outdir=dist --watch",
"build-esm": "npx -y esbuild chartbase.js --format=esm --bundle --minify --allow-overwrite --sourcemap --outdir=dist",
"build": "npm run build-esm",
"prepublishOnly": "npm run docs && npm test",
"pretest": "npm run build",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"files": [
"README.md",
"dist/*"
],
"repository": {
"type": "git",
"url": "git@github.com/gramener/gramex-chartbase"
},
"keywords": [
"gramex",
"chartbase",
"choropleth",
"map"
],
"author": "S Anand <root.node@gmail.com>",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/gramener/gramex-chartbase/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://gramener.github.io/gramex-chartbase/",
"devDependencies": {
"d3-selection": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0"
}
}