-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.4 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
{
"name": "@gramex/sankey",
"version": "1.1.0",
"description": "A Sankey (or flow) diagram for graph visualization.",
"module": "dist/sankey.js",
"main": "dist/sankey.min.js",
"scripts": {
"docs": "npx -y documentation build sankey.js --markdown-toc false -f md | npx -y prettier --parser markdown > docs/api.md",
"watch": "npx -y esbuild sankey.js --format=esm --bundle --minify --allow-overwrite --sourcemap --outdir=dist --watch",
"build-browser": "npx -y esbuild sankey.js --format=iife --global-name=gramex --bundle --minify --allow-overwrite --sourcemap --outdir=dist",
"build-esm": "npx -y esbuild sankey.js --format=esm --bundle --minify --allow-overwrite --sourcemap --outdir=dist",
"build": "npm run build-browser && npm run build-esm && npm run docs",
"prepublishOnly": "npm run docs && npm run build"
},
"files": [
"README.md",
"dist/*"
],
"repository": {
"type": "git",
"url": "[email protected]:gramener/gramex-sankey"
},
"keywords": [
"gramex",
"sankey",
"choropleth",
"map"
],
"author": "S Anand <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gramener/gramex-sankey/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://gramener.github.io/gramex-sankey/",
"devDependencies": {
"@gramex/chartbase": "^1.0.2"
}
}