forked from socrata/soda-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 872 Bytes
/
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
{
"name": "soda-js",
"description": "js library for accessing a soda2 api",
"homepage": "dev.socrata.com",
"keywords": [ "socrata", "soda", "api", "opendata", "open data" ],
"contributors": [{ "name": "Clint Tseng", "email": "[email protected]" }],
"homepage": "https://github.com/socrata/soda-js",
"dependencies": {
"eventemitter2": "~0.4.14",
"superagent": "~0.21.0"
},
"devDependencies": {
"coffee-script": "~1.6.3",
"expresso": "~0.9.2",
"browserify": "^12.0.1"
},
"licenses": [{ "type": "MIT" }],
"scripts": {
"test": "node_modules/expresso/bin/expresso test/*",
"coffee": "node_modules/coffee-script/bin/cake build",
"bundle": "browserify lib/soda-js.js --standalone soda > lib/soda-js.bundle.js",
"build": "npm run coffee && npm run bundle"
},
"main": "./lib/soda-js.js",
"version": "0.2.2"
}