-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.56 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
{
"name": "@gramex/network",
"version": "2.1.0",
"description": "A force-directed network or graph visualization.",
"module": "dist/network.js",
"main": "dist/network.min.js",
"scripts": {
"docs": "npx -y documentation build network.js kpartite.js --markdown-toc false -f md | npx -y prettier --parser markdown > docs/api.md",
"watch": "npx -y esbuild network.js kpartite.js --format=esm --bundle --minify --allow-overwrite --sourcemap --outdir=dist --watch",
"build-browser": "npx -y esbuild network.js kpartite.js --format=iife --global-name=gramex --bundle --minify --allow-overwrite --sourcemap --outdir=dist",
"build-esm": "npx -y esbuild network.js kpartite.js --format=esm --bundle --minify --allow-overwrite --sourcemap --outdir=dist",
"build": "npm run build-browser && npm run build-esm",
"prepublishOnly": "npm run docs && npm run build"
},
"files": [
"README.md",
"dist/*"
],
"repository": {
"type": "git",
"url": "git@github.com:gramener/gramex-network"
},
"keywords": [
"gramex",
"network",
"choropleth",
"map"
],
"author": "S Anand <s.anand@gramener.com>",
"contributors": [
"Aayush Thakur <aayush.thakur@gramener.com>",
"Chandana Sagar <chandana.sagar@gramener.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/gramener/gramex-network/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://gramener.github.io/gramex-network/",
"devDependencies": {
"@gramex/chartbase": "^1.0.2"
}
}