-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.69 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "metagetta",
"version": "0.4.1",
"description": "Library for fetching content metadata from around the web.",
"main": "index.js",
"scripts": {
"test": "grunt test",
"prepublish": "npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/cinema6/metagetta.git"
},
"keywords": [
"metadata",
"meta",
"youtube",
"vimeo",
"dailymotion",
"instagram",
"wistia",
"vast",
"iab",
"video",
"web"
],
"author": "Reelcontent, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/cinema6/metagetta/issues"
},
"homepage": "https://github.com/cinema6/metagetta",
"devDependencies": {
"brfs": "^1.4.1",
"function-bind": "^1.0.2",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-watch": "^0.6.1",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-uglify": "^0.11.0",
"grunt-browserify": "^4.0.1",
"grunt-karma": "^0.12.0",
"jasmine": "^2.3.2",
"jasmine-core": "^2.3.4",
"karma": "^0.13.9",
"karma-browserify": "^4.3.0",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.1",
"phantomjs": "^1.9.18",
"proxyquire-universal": "^1.0.8"
},
"dependencies": {
"cheerio": "^0.19.0",
"lie": "^3.0.1",
"superagent": "^1.3.0",
"vastacular": "^0.1.0",
"jsonp": "^0.2.0"
},
"optionalDependencies": {
"ffprobe-static": "^1.1.0"
},
"browser": {
"./lib/utils/html_to_text.js": "./lib/utils/html_to_text--browser.js",
"./lib/utils/get_video_metadata.js": "./lib/utils/get_video_metadata--browser.js",
"./lib/utils/jsonp.js": "./lib/utils/jsonp--browser.js"
}
}