forked from itteco/iframely
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (59 loc) · 1.83 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
69
70
71
72
73
74
{
"name": "iframely",
"version": "1.0.0",
"description": "oEmbed/2 gateway endpoint. Get embed data for various http links through one self-hosted API",
"keywords": ["oembed", "embed", "open graph", "og", "twitter cards"],
"homepage": "http://iframely.com",
"repository" : {
"type": "git",
"url": "https://github.com/itteco/iframely.git"
},
"bugs": {
"url": "https://github.com/itteco/iframely/issues"
},
"license": "MIT",
"dependencies": {
"jslint": "0.8",
"async": "1.4.2",
"underscore": "1.8.3",
"request": "2.72.x",
"express": "3.2.4",
"send": "0.1.0",
"connect": "2.7.9",
"ejs": "2.3.4",
"moment": "2.10.6",
"chokidar": "1.2.0",
"jsontoxml": "0.0.11",
"sax": "1.1.3",
"htmlparser2": "3.8.x",
"entities": "1.1.x",
"imagesize": "1.0.0",
"iconv-lite": "0.4.13",
"mimelib": "0.2",
"http-parser-js":"0.4.2",
"redis": "0.8.3",
"memcached": "2.2.*",
"node-cache": "1.0.3",
"readabilitySAX":"1.6.1",
"cheerio": "0.19.0",
"graceful-cluster": "*"
},
"devDependencies": {
"vows": "~0.7.0",
"feedparser": "0.16",
"mongoose": "4.0.3",
"chai": "^3.5.0",
"mocha": "^3.1.2",
"mock-http-server": "0.0.4",
"supertest": "^2.0.0"
},
"iframely-proxy-plugins": true,
"main": "./lib/core",
"scripts": {
"test": "vows test/main.js --isolate --spec && npm run test-e2e",
"test-e2e": "NODE_ENV=test PORT=8080 mocha test"
},
"engines": {
"node": ">=0.10.21"
}
}