-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.73 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "census-boundaries",
"version": "2.0.6",
"description": "Downloads and converts US Census TIGER data representing all boundaries in the United States",
"main": "dist/index.js",
"keywords": [
"census",
"geojson",
"convert",
"index",
"civic",
"civil"
],
"repository": {
"type": "git",
"url": "git+https://github.com/staeco/census-boundaries.git"
},
"contributors": [
"Contra <[email protected]> (http://contra.io)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/staeco/census-boundaries/issues"
},
"homepage": "https://github.com/staeco/census-boundaries#readme",
"files": [
"src",
"dist",
"bin"
],
"scripts": {
"preversion": "npm run clean && npm run build",
"build": "babel src --out-dir dist",
"clean": "rimraf dist",
"lint": "eslint src",
"test": "npm run-script lint"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-es2015": "^6.3.13",
"babel-preset-es2015-loose": "^8.0.0",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.26.0",
"eslint": "^4.0.0",
"eslint-cli": "^1.1.1",
"rimraf": "^3.0.0"
},
"dependencies": {
"JSONStream": "^1.3.2",
"async": "^3.0.0",
"babel-runtime": "^6.26.0",
"chalk": "^3.0.0",
"debug": "^4.0.0",
"ftp": "^0.3.10",
"lodash.clone": "^4.5.0",
"meow": "^6.0.0",
"once": "^1.3.3",
"plural": "^1.0.0",
"pump": "^3.0.0",
"shp2json": "^1.2.1",
"superagent": "^5.0.0",
"through2-asyncmap": "^1.1.0",
"url-join": "^4.0.0"
}
}