CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
package.json54 linesDownload Raw Back to d3-timer
1{2  "name": "d3-timer",3  "version": "3.0.1",4  "description": "An efficient queue capable of managing thousands of concurrent animations.",5  "homepage": "https://d3js.org/d3-timer/",6  "repository": {7    "type": "git",8    "url": "https://github.com/d3/d3-timer.git"9  },10  "keywords": [11    "d3",12    "d3-module",13    "timer",14    "transition",15    "animation",16    "requestAnimationFrame",17    "setTimeout",18    "setInterval"19  ],20  "license": "ISC",21  "author": {22    "name": "Mike Bostock",23    "url": "http://bost.ocks.org/mike"24  },25  "type": "module",26  "files": [27    "dist/**/*.js",28    "src/**/*.js"29  ],30  "module": "src/index.js",31  "main": "src/index.js",32  "jsdelivr": "dist/d3-timer.min.js",33  "unpkg": "dist/d3-timer.min.js",34  "exports": {35    "umd": "./dist/d3-timer.min.js",36    "default": "./src/index.js"37  },38  "sideEffects": false,39  "devDependencies": {40    "eslint": "7",41    "mocha": "8",42    "rollup": "2",43    "rollup-plugin-terser": "7"44  },45  "scripts": {46    "test": "mocha 'test/**/*-test.js' && eslint src test",47    "prepublishOnly": "rm -rf dist && yarn test && rollup -c",48    "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 -"49  },50  "engines": {51    "node": ">=12"52  }53}54