source: node_modules/d3-hierarchy/package.json

Last change on this file was e4c61dd, checked in by istevanoska <ilinastevanoska@…>, 6 months ago

Prototype 1.1

  • Property mode set to 100644
File size: 1.7 KB
RevLine 
[e4c61dd]1{
2 "name": "d3-hierarchy",
3 "version": "3.1.2",
4 "description": "Layout algorithms for visualizing hierarchical data.",
5 "homepage": "https://d3js.org/d3-hierarchy/",
6 "repository": {
7 "type": "git",
8 "url": "https://github.com/d3/d3-hierarchy.git"
9 },
10 "keywords": [
11 "d3",
12 "d3-module",
13 "layout",
14 "tree",
15 "treemap",
16 "hierarchy",
17 "infovis"
18 ],
19 "license": "ISC",
20 "author": {
21 "name": "Mike Bostock",
22 "url": "http://bost.ocks.org/mike"
23 },
24 "type": "module",
25 "files": [
26 "dist/**/*.js",
27 "src/**/*.js"
28 ],
29 "module": "src/index.js",
30 "main": "src/index.js",
31 "jsdelivr": "dist/d3-hierarchy.min.js",
32 "unpkg": "dist/d3-hierarchy.min.js",
33 "exports": {
34 "umd": "./dist/d3-hierarchy.min.js",
35 "default": "./src/index.js"
36 },
37 "sideEffects": false,
38 "devDependencies": {
39 "benchmark": "2",
40 "d3-array": "1.2.0 - 3",
41 "d3-dsv": "1 - 3",
42 "d3-random": "1.1.0 - 3",
43 "eslint": "8",
44 "mocha": "9",
45 "rollup": "2",
46 "rollup-plugin-terser": "7"
47 },
48 "scripts": {
49 "test": "mocha 'test/**/*-test.js' && eslint src test",
50 "prepublishOnly": "rm -rf dist && yarn test && rollup -c",
51 "postpublish": "git push && git push --tags && cd ../d3.github.com && git pull && cp ../${npm_package_name}/dist/${npm_package_name}.js ${npm_package_name}.v${npm_package_version%%.*}.js && cp ../${npm_package_name}/dist/${npm_package_name}.min.js ${npm_package_name}.v${npm_package_version%%.*}.min.js && git add ${npm_package_name}.v${npm_package_version%%.*}.js ${npm_package_name}.v${npm_package_version%%.*}.min.js && git commit -m \"${npm_package_name} ${npm_package_version}\" && git push && cd -"
52 },
53 "engines": {
54 "node": ">=12"
55 }
56}
Note: See TracBrowser for help on using the repository browser.