-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·41 lines (41 loc) · 1.05 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
{
"name": "gatsby-video",
"description": "Gatsby video plugin that consumes video from gatsby-transformer-ffmpeg",
"version": "0.2.0",
"author": "Michael Orenstein <[email protected]>",
"bugs": {
"url": "https://github.com/Mike-Dax/gatsby-video/issues"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"bluebird": "^3.5.5",
"react": ">=16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"babel-preset-gatsby-package": "^0.2.2",
"cross-env": "^5.2.0"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"video",
"ffmpeg"
],
"license": "MIT",
"peerDependencies": {
"gatsby": "^2.0.33",
"gatsby-transformer-ffmpeg": "0.3.3"
},
"main": "./lib/index.js",
"repository": "https://github.com/Mike-Dax/gatsby-video",
"scripts": {
"build": "babel src --out-dir lib --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir lib --ignore **/__tests__"
},
"engines": {
"node": ">=8.0.0"
}
}