-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.82 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
{
"name": "@gramex/insighttree",
"version": "3.2.0",
"description": "Insight Tree breaks down a metric into a hierarchy (tree) and highlights the insights from that metric.",
"type": "module",
"module": "dist/insighttree.js",
"main": "dist/insighttree.min.js",
"scripts": {
"docs": "npx -y documentation build insighttree.js --markdown-toc false -f md | npx -y prettier --parser markdown > docs/api.md",
"watch": "npx -y esbuild insighttree.js insighttree.css --format=esm --bundle --minify --allow-overwrite --sourcemap --outdir=dist --watch",
"build-browser": "npx -y esbuild insighttree.js insighttree.css --format=iife --global-name=gramex --bundle --sourcemap --minify --outdir=dist",
"build-esm": "npx -y esbuild insighttree.js insighttree.css --format=esm --bundle --minify --allow-overwrite --sourcemap --outdir=dist",
"build": "npm run build-browser && npm run build-esm && npm run docs",
"prepublishOnly": "npm run build",
"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-insighttree"
},
"keywords": [
"hierarchy",
"tree",
"insight",
"analysis",
"gramex",
"component"
],
"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-insighttree/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://gramener.github.io/gramex-insighttree/",
"devDependencies": {
"jest": "^28.1.0",
"jest-environment-jsdom": "^29.5.0"
}
}