1{
2  "name": "d3-time-format",
3  "version": "2.1.1",
4  "description": "A JavaScript time formatter and parser inspired by strftime and strptime.",
5  "keywords": [
6    "d3",
7    "d3-module",
8    "time",
9    "format",
10    "strftime",
11    "strptime"
12  ],
13  "homepage": "https://d3js.org/d3-time-format/",
14  "license": "BSD-3-Clause",
15  "author": {
16    "name": "Mike Bostock",
17    "url": "http://bost.ocks.org/mike"
18  },
19  "main": "build/d3-time-format.js",
20  "module": "index",
21  "jsnext:main": "index",
22  "repository": {
23    "type": "git",
24    "url": "https://github.com/d3/d3-time-format.git"
25  },
26  "scripts": {
27    "pretest": "rm -rf build && mkdir build && rollup -c --banner \"$(preamble)\"",
28    "test": "TZ=America/Los_Angeles tape 'test/**/*-test.js' && eslint index.js src",
29    "prepublishOnly": "npm run test && uglifyjs -b beautify=false,preamble=\"'$(preamble)'\" build/d3-time-format.js -c -m -o build/d3-time-format.min.js",
30    "postpublish": "git push && git push --tags && cd ../d3.github.com && git pull && cp ../d3-time-format/build/d3-time-format.js d3-time-format.v2.js && cp ../d3-time-format/build/d3-time-format.min.js d3-time-format.v2.min.js && git add d3-time-format.v2.js d3-time-format.v2.min.js && git commit -m \"d3-time-format ${npm_package_version}\" && git push && cd - && zip -j build/d3-time-format.zip -- LICENSE README.md build/d3-time-format.js build/d3-time-format.min.js"
31  },
32  "dependencies": {
33    "d3-time": "1"
34  },
35  "devDependencies": {
36    "d3-queue": "3",
37    "eslint": "4",
38    "package-preamble": "0.1",
39    "rollup": "0.50",
40    "tape": "4",
41    "uglify-js": "3"
42  }
43}
44