-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1004 Bytes
/
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
{
"name": "html-to-vue",
"version": "1.4.0",
"description": "Converts HTML to Vue render functions, while giving the ability to swap out certain HTML nodes with Vue Components",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/HCESrl/html-to-vue"
},
"homepage": "https://github.com/HCESrl/html-to-vue",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "parcel index.js",
"build": "parcel build index.js --experimental-scope-hoisting --out-dir dist ",
"prepublishOnly": "npm run build"
},
"keywords": [
"HTML",
"Vue",
"render",
"function",
"convert"
],
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"html-parse-stringify2": "^2.0.1"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"parcel-bundler": "^1.12.4",
"parcel-plugin-bundle-visualiser": "^1.2.0"
},
"browserslist": "> 0.25%, not dead"
}