-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.03 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
{
"name": "embedza",
"version": "4.0.1",
"description": "Create HTML snippets/embeds from URLs using info from oEmbed, Open Graph, meta tags.",
"keywords": [
"youtube",
"vimeo",
"oembed",
"opengraph"
],
"repository": "nodeca/embedza",
"license": "MIT",
"files": [
"assets/",
"config/generic.yml",
"lib/",
"support/",
"index.js"
],
"dependencies": {
"cheerio": "^0.22.0",
"debug": "^4.1.1",
"got": "^11.8.2",
"lodash": "^4.0.0",
"probe-image-size": "^7.2.1"
},
"devDependencies": {
"coveralls": "^3.0.3",
"eslint": "^8.1.0",
"express": "^4.16.4",
"mocha": "^9.1.3",
"nock": "^13.1.1",
"nyc": "^15.0.0",
"pug": "^3.0.2",
"supertest": "^6.1.6"
},
"scripts": {
"lint": "eslint .",
"test": "npm run lint && nyc mocha",
"coverage": "npm run test && nyc report --reporter html",
"report-coveralls": "nyc report --reporter=text-lcov | coveralls",
"install": "node support/install",
"start": "node support/server"
}
}