-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
49 lines (49 loc) · 1.29 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
{
"name": "gatsby-remark-embed-video",
"version": "3.2.1",
"description": "Embed Videos (Youtube, Vimeo, VideoPress) in Gatsby via Markdown",
"main": "index.js",
"types": "dist/index.d.ts",
"author": "Neal Bürger <info@nealbuerger.com>",
"license": "MIT",
"keywords": [
"gatsby",
"gatsby-plugin",
"remark"
],
"dependencies": {
"get-video-id": "^3.6.5",
"remark-burger": "^1.0.1",
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
"@types/jest": "^29.1.1",
"@types/node": "^18.7.23",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"jest": "^29.1.2",
"prettier": "^2.7.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.3",
"typescript": "^4.7.4"
},
"scripts": {
"build": "tsc",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "tsc -w",
"commit": "npx git-cz",
"release": "standard-version",
"deployToTest": "npx zx deployToTestGatsby.mjs",
"test": "jest --ci"
},
"homepage": "https://github.com/borgfriend/gatsby-remark-embed-video#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/borgfriend/gatsby-remark-embed-video.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}