forked from bcomnes/twitter-video
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.06 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
{
"name": "twitter-video",
"version": "2.0.0",
"description": "Easily posts native video to twitter's video API.",
"author": "Bret Comnes <[email protected]>",
"bugs": {
"url": "https://github.com/bcomnes/twitter-video/issues"
},
"devDependencies": {
"standard": "*",
"tap-spec": "^4.0.2",
"tape": "^4.0.0"
},
"homepage": "https://github.com/bcomnes/twitter-video",
"keywords": [
"twitter",
"video",
"twitter video",
"twitter api",
"native",
"native video"
],
"license": "ISC",
"main": "index.js",
"bin": "./bin/twitter-video",
"repository": {
"type": "git",
"url": "https://github.com/bcomnes/twitter-video.git"
},
"scripts": {
"test": "standard && tape test/*.js | tap-spec"
},
"dependencies": {
"chalk": "^1.1.0",
"cliclopts": "^1.1.1",
"duplexify": "^3.4.2",
"inquirer": "^0.9.0",
"minimist": "^1.1.2",
"osenv": "^0.1.3",
"qs": "^4.0.0",
"rc": "^1.0.3",
"request": "^2.60.0",
"through2": "^2.0.0",
"twit": "^2.1.0",
"util-extend": "^1.0.1"
}
}