-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 3.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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "lifescope-embed",
"version": "1.1.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": "https://lifescope.io",
"repository": {
"type": "git",
"url": "https://github.com/lifescopelabs/lifescope-embed.git"
},
"bugs": {
"url": "https://github.com/lifescopelabs/lifescope-embed/issues"
},
"license": "MIT",
"dependencies": {
"async": "2.4.1",
"babel-cli": "^6.26.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"cheerio": "0.22.0",
"chokidar": "^2.0.3",
"cookie-parser": "^1.4.3",
"ejs": "2.5.7",
"entities": "1.1.1",
"express": "^4.16.3",
"graceful-cluster": "0.0.3",
"htmlparser2": "3.9.2",
"http-errors": "^1.6.3",
"http-parser-js": "itteco/http-parser-js#magicode-fix-22",
"iconv-lite": "0.4.17",
"imagesize": "1.0.0",
"jslint": "^0.12.0",
"jsontoxml": "0.0.11",
"memcached": "2.2.2",
"moment": "^2.19.3",
"mongodb": "^3.0.10",
"node-cache": "1.*",
"parse-iso-duration": "1.0.0",
"readabilitySAX": "1.6.1",
"redis": "2.7.1",
"request": "^2.87.0",
"sax": "1.2.2",
"send": "0.16.1",
"source-map-support": "^0.5.6",
"underscore": "1.8.3"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-jest": "^23.2.0",
"babel-plugin-transform-es2015-modules-amd": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"backpack-core": "^0.7.0",
"chai": "^3.5.0",
"feedparser": "2.2.0",
"gulp": "^3.9.1",
"gulp-add-src": "^1.0.0",
"gulp-babel": "^7.0.1",
"gulp-clean": "^0.4.0",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^4.0.2",
"gulp-gzip": "^1.4.2",
"gulp-header": "^2.0.5",
"gulp-jsonlint": "^1.2.1",
"gulp-rename": "^1.3.0",
"gulp-tar": "^2.1.0",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
"gulp-zip": "^4.1.0",
"mocha": "^5.2.0",
"mock-http-server": "0.0.4",
"mongoose": "4.10.5",
"run-sequence": "^2.2.1",
"supertest": "^3.1.0",
"vows": "0.7.0"
},
"iframely-proxy-plugins": true,
"main": "./lib/core",
"scripts": {
"build": "sh build.sh",
"start": "node build/main.js",
"serve": "NODE_ENV=production node server.js",
"serve-dev": "NODE_ENV=dev node server.js",
"test": "vows test/main.js --isolate --spec && npm run test-e2e",
"test-e2e": "NODE_ENV=test PORT=8080 mocha --exit test/e2e.js"
},
"engines": {
"node": ">=0.10.21"
}
}