forked from socrata/soda-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 902 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "soda-js",
"description": "js library for accessing a soda2 api",
"homepage": "https://github.com/socrata/soda-js",
"keywords": [
"socrata",
"soda",
"api",
"opendata",
"open data"
],
"contributors": [
{
"name": "Clint Tseng",
"email": "[email protected]"
}
],
"dependencies": {
"eventemitter2": "~0.4.14",
"superagent": "^3.7.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.4"
}