forked from extractus/oembed-extractor
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 953 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 953 Bytes
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
{
"version": "1.4.6",
"name": "oembed-parser",
"description": "Get oEmbed data from given URL.",
"homepage": "https://www.npmjs.com/package/oembed-parser",
"repository": {
"type": "git",
"url": "git@github.com:ndaidong/oembed-parser.git"
},
"author": "@ndaidong",
"main": "./index.js",
"engines": {
"node": ">= 10.14.2"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "jest --verbose --coverage=true --unhandled-rejections=strict",
"eval": "node eval",
"sync": "node sync",
"tsc": "tsc --init",
"build": "tsc",
"reset": "node reset"
},
"dependencies": {
"https-proxy-agent": "^5.0.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"eslint-config-goes": "^1.2.0",
"jest": "^26.6.3",
"typescript": "^4.2.2"
},
"keywords": [
"oembed",
"extractor",
"parser",
"util"
],
"license": "MIT",
"types": "./index.d.ts"
}