-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "d3-geo-scale-bar",
"version": "1.2.5",
"description": "Displays automatic scale bars for projected geospatial data.",
"keywords": [
"d3",
"d3-module",
"d3-geo",
"scale",
"visualization"
],
"homepage": "https://github.com/HarryStevens/d3-geo-scale-bar",
"license": "BSD-3-Clause",
"author": {
"name": "Harry Stevens",
"url": "http://harryjstevens.com/"
},
"main": "build/d3-geo-scale-bar.js",
"module": "index",
"jsnext:main": "index",
"repository": {
"type": "git",
"url": "https://github.com/HarryStevens/d3-geo-scale-bar"
},
"scripts": {
"pretest": "rm -rf build && mkdir build && rollup -c --banner \"$(preamble)\"",
"test": "tape 'test/**/*-test.js'",
"prepublishOnly": "npm run test && uglifyjs build/d3-geo-scale-bar.js -c -m -o build/d3-geo-scale-bar.min.js",
"postpublish": "zip -j build/d3-geo-scale-bar.zip -- LICENSE README.md build/d3-geo-scale-bar.js build/d3-geo-scale-bar.min.js"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"babel": "^6.23.0",
"d3-geo": "^1.11.9",
"d3-selection": "^1.3.0",
"jsdom": "11",
"package-preamble": "0.1",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^3.3.0",
"tape": "4",
"uglify-js": "^2.8.11"
},
"dependencies": {}
}