-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 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
{
"name": "@vanillawc/wc-markdown",
"version": "1.6.11",
"license": "MIT",
"author": "Evan Plaice <[email protected]> (https://evanplaice.com/)",
"description": "A vanilla Markdown web component with optional syntax highlighting",
"keywords": [
"web-components",
"vanilla",
"markdown",
"syntax-highlighting"
],
"repository": "https://github.com/vanillawc/wc-markdown/",
"main": "index.js",
"scripts": {
"start": "npx live-server --no-browser --port=5500 --open=dev",
"lint": "esmtk lint",
"build": "npm run build:esm && npm run build:min",
"build:esm": "esmtk bundle src/wc-markdown.js index.js",
"build:min": "esmtk minify src/wc-markdown.js index.min.js",
"copy": "npm run copy:themes && npm run copy:components",
"copy:themes": "cp -r node_modules/prism-es6/themes themes",
"copy:components": "cp -r node_modules/prism-es6/components .",
"package": "npx rimraf package && npm pack | tail -n 1 | xargs tar -xf",
"preversion": "npm run lint",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"esmtk": "^0.5.6",
"marked": "^4.0.1",
"prism-es6": "^1.2.0"
},
"standard": {
"ignore": [
"components/*",
"index.js"
]
}
}