-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.23 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
{
"name": "@pittica/gatsby-plugin-video",
"private": false,
"description": "Video embed plugin for GatsbyJS.",
"version": "1.1.0",
"author": {
"name": "Lucio Benini",
"email": "[email protected]",
"url": "https://pittica.com"
},
"bugs": {
"url": "https://github.com/pittica/gatsby-plugin-video/issues"
},
"deprecated": false,
"homepage": "https://github.com/pittica/gatsby-plugin-video",
"keywords": [
"gatsby",
"gatsby-plugin",
"video"
],
"devDependencies": {
"@babel/cli": "^7.16.0",
"babel-preset-gatsby-package": "^2.0.0",
"react-scripts": "^4.0.3"
},
"peerDependencies": {
"gatsby": "^3.0.0 || ^4.0.0"
},
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/pittica/gatsby-plugin-video.git"
},
"config": {
"access": "public"
},
"scripts": {
"test": "react-scripts test",
"prepare": "rimraf ./dist && mkdirp ./dist && babel src --out-dir dist --copy-files"
},
"eslintConfig": {
"extends": "react-app"
},
"babel": {
"presets": [
"babel-preset-gatsby-package"
]
},
"dependencies": {
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}