-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.53 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
{
"name": "jyql",
"description": "Jyql is a browser-based and Node.js JavaScript library for fetching data from any Internet source using the Yahoo! Query Language engine (YQL) as a proxy. ",
"tags": [ "YQL", "Yahoo!", "Yahoo! Query Language" ],
"version": "0.0.2",
"author": {
"name": "Gianfranco Cecconi",
"email": "[email protected]",
"url": "http://www.giaceccosdigitalcontraptionsimaginarium.com"
},
"homepage": "https://github.com/giacecco/jyql",
"repository": {
"type": "git",
"url": "git://github.com/giacecco/jyql.git"
},
"bugs": {
"url": "https://github.com/giacecco/jyql/issues"
},
"main": "./lib/jyql",
"dependencies": {
"request": ">=2.12.0"
},
"devDependencies": {
"coffee-script": ">=1.4.0",
"grunt": ">=0.3.17"
},
"licenses": [
{
"name": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
},
{
"name": "Yahoo! terms of service",
"url": "http://info.yahoo.com/legal/us/yahoo/utos/utos-173.html"
},
{
"name": "Yahoo! Query Language's terms of use",
"url": "http://info.yahoo.com/legal/us/yahoo/yql/yql-4307.html"
}
],
"scripts": {
"build:library": "./node_modules/coffee-script/bin/cake build:library",
"build:test": "./node_modules/coffee-script/bin/cake build:test",
"build:examples": "./node_modules/coffee-script/bin/cake build:examples",
"test:browser": "./node_modules/grunt/bin/grunt qunit:browser",
"dist": "./node_modules/grunt/bin/grunt concat min"
}
}