This repository has been archived by the owner on Jan 4, 2022. It is now read-only.
forked from muzam1l/react-tiny-oembed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.02 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
{
"name": "react-tiny-oembed",
"version": "1.1.0",
"description": "Oembed compliant tiny react component for embedding content from websites",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run format && npm run lint && rollup -c",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\"",
"lint": "eslint \"src/**\"",
"prepare": "npm run build"
},
"files": [
"lib/**/*"
],
"keywords": [
"oembed",
"embed",
"tiny",
"react",
"hooks",
"iframe"
],
"author": "muzam1l https://github.com/muzam1l",
"license": "MIT",
"homepage": "https://github.com/muzam1l/react-tiny-oembed",
"repository": {
"type": "git",
"url": "git+https://github.com/muzam1l/react-tiny-oembed.git"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@types/minimatch": "^3.0.3",
"@types/react": "^16.9.56",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.13.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.1.2",
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"rollup": "^2.33.3",
"rollup-plugin-dts": "^1.4.14",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"tslib": "^2.0.3",
"typescript": "^4.0.5"
},
"dependencies": {
"axios": "^0.21.1",
"minimatch": "^3.0.4"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
}