-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 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
{
"name": "markdown-it-html5-media",
"version": "0.7.1",
"description": "Lightweight support for HTML5 video/audio using markdown image syntax",
"repository": "https://github.com/eloquence/markdown-it-html5-media.git",
"main": "lib/index.js",
"scripts": {
"test": "mocha",
"docs": "jsdoc -r lib/ -c jsdocConf.json -d docs/",
"babel": "babel lib -d build",
"bundle": "browserify build/index.js --standalone html5Media -o build/markdown-it-html5-media.js",
"uglify": "uglifyjs build/markdown-it-html5-media.js -o build/markdown-it-html5-media.min.js",
"build": "npm run babel && npm run bundle && npm run uglify",
"dist": "npm run build && cp build/markdown-it-html5-media.* dist/"
},
"keywords": [
"markdown-it-plugin",
"markdown-it"
],
"author": "Erik Moeller <eloquence@gmail.com> (https://twitter.com/xirzon)",
"license": "CC0-1.0",
"dependencies": {
"markdown-it": "^12.3.2"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"browserify": "^17.0.0",
"jsdoc": "^3.6.10",
"markdown-it-testgen": "^0.1.6",
"mocha": "^9.2.0",
"uglify-js": "^3.12.1"
},
"engines": {
"node": ">=10.0"
}
}