-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.52 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
{
"name": "markdown-it-implicit-figures-video",
"version": "0.10.1",
"description": "Render videos occurring by themselves in a paragraph as `<figure><video ...></figure>`, similar to pandoc's implicit figures for images.",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"files": [
"lib/"
],
"scripts": {
"build": "rm -rf ./lib && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"hint": "npx jshint lib",
"prepublishOnly": "npm run build && npm test",
"preversion": "jest",
"postpublish": "git push && git push --tags",
"test": "jest",
"ci": "npm run build && npm test"
},
"author": {
"name": "Eric Woodward",
"email": "[email protected]",
"url": "https://www.itsericwoodward.com"
},
"license": "MIT",
"repository": "github:ItsEricWoodward/markdown-it-implicit-figures-video",
"bugs": {
"url": "https://github.com/ItsEricWoodward/markdown-it-implicit-figures-video/issues"
},
"homepage": "https://github.com/ItsEricWoodward/markdown-it-implicit-figures-video#readme",
"keywords": [
"markdown-it",
"markdown-it-plugin",
"video",
"figure",
"implicit_figures"
],
"devDependencies": {
"@tsconfig/node18": "^18.2.0",
"@types/jest": "^29.5.3",
"@types/markdown-it": "^13.0.0",
"@types/node": "^20.4.10",
"jest": "^29.6.2",
"jshint": "^2.13.6",
"markdown-it": "^13.0.1",
"markdown-it-attrs": "^4.1.6",
"markdown-it-html5-media": "^0.7.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}