-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "cartodb-export",
"version": "0.2.0",
"description": "Export a visualization from CartoDB",
"main": "index.js",
"scripts": {
"test": "mocha",
"watch": "babel src/index.js --out-file index.js --watch"
},
"bin": {
"cartodb-export": "./bin/cartodb-export.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ebrelsford/cartodb-export.git"
},
"keywords": [
"gis",
"map",
"maps",
"cartodb"
],
"author": "Eric Brelsford <[email protected]> (http://ebrelsford.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ebrelsford/cartodb-export/issues"
},
"homepage": "https://github.com/ebrelsford/cartodb-export#readme",
"devDependencies": {
"babel": "^5.8.21",
"chai": "^3.2.0",
"mocha": "^2.2.5",
"temp": "^0.8.3"
},
"dependencies": {
"async": "^1.4.2",
"commander": "^2.9.0",
"mkdirp": "^0.5.1",
"progress": "^1.1.8",
"request": "^2.60.0",
"sql-parser": "^0.5.0",
"underscore": "^1.8.3"
}
}