-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
51 lines (51 loc) · 1.31 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
{
"name": "cartodb",
"description": "CartoDB Node.js library",
"private": false,
"version": "0.5.1",
"main": "index",
"url": "https://github.com/CartoDB/cartodb-nodejs",
"license": "BSD-3-Clause",
"repository": [
{
"type": "git",
"url": "git://github.com/CartoDB/cartodb-nodejs.git"
}
],
"author": {
"name": "Chris Whong, CartoDB",
"url": "https://github.com/CartoDB/cartodb-nodejs",
"email": "[email protected]"
},
"contributors": [
"Dan Zajdband <[email protected]>",
"Javi Santana <[email protected]>",
"Chris Whong <[email protected]>",
"Erik Escoffier <[email protected]>"
],
"dependencies": {
"command-line-args": "2.X",
"debug": "2.X",
"mustache": "2.X",
"openurl": "1.X",
"request": "2.X"
},
"devDependencies": {
"eslint": "^2.2.0",
"eslint-config-airbnb": "^6.0.2",
"mocha": "^1.8.2"
},
"scripts": {
"test": "npm run test:unit && npm run test:functional",
"test:unit": "mocha test/unit",
"test:functional": "mocha -t 10000 test/functional",
"lint": "eslint -c .eslintrc lib"
},
"bin": {
"cartodb": "bin/sql.bin.js",
"cartodb-sql": "bin/sql.bin.js",
"carto-sql": "bin/sql.bin.js",
"cartodb-import": "bin/import.bin.js",
"carto-import": "bin/import.bin.js"
}
}