-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
57 lines (57 loc) · 1.56 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
51
52
53
54
55
56
57
{
"name": "vue-html-to-paper",
"version": "2.0.3",
"description": "Vue mixin for printing html elements to paper.",
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix --ext .js --ignore-path .gitignore .",
"prebuild:webpack": "rm -rf dist",
"prebuild:rollup": "rm -rf build",
"build:webpack": "webpack --progress",
"build:rollup": "rollup -c",
"build:all": "npm run build:webpack && npm run build:rollup",
"build": "npm run build:rollup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mycure-inc/vue-html-to-paper.git"
},
"keywords": [
"html",
"printing",
"element",
"print html",
"print element"
],
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/preset-env": "^7.14.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"compression-webpack-plugin": "^1.0.0",
"css-loader": "^0.28.4",
"eslint": "^7.25.0",
"rollup": "^2.47.0",
"style-loader": "^0.18.2",
"terser-webpack-plugin": "^5.1.1",
"uglify-loader": "^2.0.0",
"webpack-cli": "^4.6.0",
"webpack": "^5.36.2"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"author": "Jofferson Ramirez Tiquez",
"license": "ISC",
"bugs": {
"url": "https://github.com/mycure-inc/vue-html-to-paper/issues"
},
"homepage": "https://github.com/mycure-inc/vue-html-to-paper#readme"
}