-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
45 lines (45 loc) · 1.04 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
{
"name": "yql",
"description": "A YQL (Yahoo Query Language) client",
"version": "1.0.2",
"author": "Derek Gathright <drgath@gmail.com>",
"homepage": "https://github.com/derek/node-yql",
"engines": {
"node": ">=0.8",
"npm": "1"
},
"main": "./yql.js",
"scripts": {
"test": "istanbul cover _mocha -- -R spec tests/index.js",
"docs": "yuidoc --outdir docs ./",
"clean": "rm -rf docs coverage"
},
"repository": {
"type": "git",
"url": "http://github.com/derek/node-yql.git"
},
"bugs": {
"mail": "drgath@gmail.com",
"url": "https://github.com/derek/node-yql/issues"
},
"license": "BSD",
"dependencies": {
"request": "~2.34.0",
"underscore": "~1.6.0"
},
"devDependencies": {
"expect.js": "~0.3.1",
"istanbul": "~0.3.0",
"mocha-istanbul": "~0.2.0",
"mocha": "~1.21.3",
"sinon": "~1.10.3",
"yuidocjs": "~0.3.50"
},
"contributors": [
"Michael Matuzak <matuzak@yahoo-inc.com>",
"Andreas Madsen <amwebdk+github@gmail.com>"
],
"keywords": [
"yql"
]
}