-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.11 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.11 KB
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
{
"name": "script-viewer",
"version": "1.0.1",
"description": "CodeViewer is a lightweight, customizable web component that makes it easy to display beautifully formatted code snippets on your website",
"main": "src/code-viewer.js",
"scripts": {
"build": "webpack --mode production && npm run copy-to-version",
"copy-to-version": "if not exist .\\versions\\%npm_package_version% mkdir .\\versions\\%npm_package_version% && copy .\\dist\\code-viewer.min.js .\\versions\\%npm_package_version%\\"
},
"repository": {
"type": "git",
"url": "git+https://github.com/t-montes/code-viewer.git"
},
"keywords": [
"code",
"code",
"viewer",
"HTML",
"web",
"component",
"tag"
],
"author": "Tony Montes",
"license": "MIT",
"bugs": {
"url": "https://github.com/t-montes/code-viewer/issues"
},
"homepage": "https://github.com/t-montes/code-viewer#readme",
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"babel-loader": "^9.1.3",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}