forked from shawnbot/topogram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "topogram",
"version": "1.0.0",
"description": "Create continuous area cartograms with TopoJSON and D3",
"keywords": [
"d3",
"d3-module",
"topojson",
"cartogram",
"geo"
],
"author": "Shawn Allen <[email protected]>",
"license": "MIT",
"main": "build/topogram.js",
"jsnext:main": "index.js",
"repository": "shawnbot/topogram",
"scripts": {
"lint": "eslint index.js src/**/*.js",
"prebuild": "rm -rf build && mkdir build",
"build": "rollup -c",
"pretest": "npm run lint && npm run build",
"test": "tape 'test/*.js'",
"prepublishOnly": "npm test && npm run minify",
"minify": "uglifyjs build/topogram.js -c -m -o build/topogram.min.js"
},
"dependencies": {
"d3-array": "^1.1.1",
"d3-geo": "^1.6.3",
"d3-scale-chromatic": "^1.1.1",
"deep-copy": "^1.2.0",
"topojson-client": "^3.0.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"rollup": "0.27",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-watch": "^3.2.2",
"tape": "^4",
"uglify-js": "^2",
"yargs": "^7.0.2"
}
}