source: node_modules/d3-chord/package.json@ e4c61dd

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

Prototype 1.1

  • Property mode set to 100644
File size: 1.6 KB
Line 
1{
2 "name": "d3-chord",
3 "version": "3.0.1",
4 "description": "Visualize relationships or network flow with an aesthetically-pleasing circular layout.",
5 "homepage": "https://d3js.org/d3-chord/",
6 "repository": {
7 "type": "git",
8 "url": "https://github.com/d3/d3-chord.git"
9 },
10 "keywords": [
11 "d3",
12 "d3-module",
13 "chord",
14 "radial",
15 "network",
16 "flow"
17 ],
18 "license": "ISC",
19 "author": {
20 "name": "Mike Bostock",
21 "url": "http://bost.ocks.org/mike"
22 },
23 "type": "module",
24 "files": [
25 "dist/**/*.js",
26 "src/**/*.js"
27 ],
28 "module": "src/index.js",
29 "main": "src/index.js",
30 "jsdelivr": "dist/d3-chord.min.js",
31 "unpkg": "dist/d3-chord.min.js",
32 "exports": {
33 "umd": "./dist/d3-chord.min.js",
34 "default": "./src/index.js"
35 },
36 "sideEffects": false,
37 "dependencies": {
38 "d3-path": "1 - 3"
39 },
40 "devDependencies": {
41 "eslint": "7",
42 "mocha": "8",
43 "rollup": "2",
44 "rollup-plugin-terser": "7"
45 },
46 "scripts": {
47 "test": "mocha 'test/**/*-test.js' && eslint src test",
48 "prepublishOnly": "rm -rf dist && yarn test && rollup -c",
49 "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 -"
50 },
51 "engines": {
52 "node": ">=12"
53 }
54}
Note: See TracBrowser for help on using the repository browser.