-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 814 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 814 Bytes
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
{
"name": "node-pbs-tv-schedules",
"version": "0.2.1",
"description": "Node module implementing the PBS TV Schedules V2 and Locator APIs",
"main": "index.js",
"repository": "https://github.com/KQED/node-pbs-tv-schedules",
"scripts": {
"example": "node examples/example.js | ./node_modules/.bin/bunyan -o short",
"test": "./node_modules/.bin/mocha test/*.js"
},
"keywords": [
"pbs",
"tv",
"television",
"schedules",
"listings",
"public",
"broadcasting",
"api"
],
"author": "Kip Gebhardt <kgebhardt@kqed.org>",
"license": "MIT",
"dependencies": {
"bluebird": "^2.9.33",
"bunyan": "^1.4.0",
"moment": "^2.10.3",
"nodeify": "^1.0.0",
"request": "^2.58.0"
},
"devDependencies": {
"must": "^0.12.0",
"mocha": "^2.2.5"
}
}