1{
2  "name": "d3-format",
3  "version": "1.2.1",
4  "description": "Format numbers for human consumption.",
5  "keywords": [
6    "d3",
7    "d3-module",
8    "format",
9    "localization"
10  ],
11  "homepage": "https://d3js.org/d3-format/",
12  "license": "BSD-3-Clause",
13  "author": {
14    "name": "Mike Bostock",
15    "url": "http://bost.ocks.org/mike"
16  },
17  "main": "build/d3-format.js",
18  "module": "index",
19  "jsnext:main": "index",
20  "repository": {
21    "type": "git",
22    "url": "https://github.com/d3/d3-format.git"
23  },
24  "scripts": {
25    "pretest": "rm -rf build && mkdir build && rollup --banner \"$(preamble)\" -f umd -n d3 -o build/d3-format.js -- index.js",
26    "test": "tape 'test/**/*-test.js' && eslint index.js src",
27    "prepublish": "npm run test && uglifyjs --preamble \"$(preamble)\" build/d3-format.js -c -m -o build/d3-format.min.js",
28    "postpublish": "git push && git push --tags && cd ../d3.github.com && git pull && cp ../d3-format/build/d3-format.js d3-format.v1.js && cp ../d3-format/build/d3-format.min.js d3-format.v1.min.js && git add d3-format.v1.js d3-format.v1.min.js && git commit -m \"d3-format ${npm_package_version}\" && git push && cd - && zip -j build/d3-format.zip -- LICENSE README.md build/d3-format.js build/d3-format.min.js"
29  },
30  "devDependencies": {},
31  "cleaned": true
32}