-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
124 lines (124 loc) · 3.08 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "vue2html",
"description": "A simple tool to convert vue component to html ",
"version": "0.2.1",
"author": "Muhammad Athif Humam <emailta.indo@gmail.com> (https://athif23.github.io/)",
"bugs": {
"url": "https://github.com/athif23/vue2html/issues",
"email": "emailta.indo@gmail.com"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"contributors": [
"Muhammad Athif Humam <emailta.indo@gmail.com> (https://athif23.github.io/)"
],
"bin": {
"vue2html": "bin/cli.js"
},
"files": [
"dist/**/*.js",
"bin",
"template",
"tailwind.config.js"
],
"dependencies": {
"@fullhuman/postcss-purgecss": "^2.2.0",
"@rollup/plugin-alias": "^3.1.0",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"autoprefixer": "^9.8.0",
"chalk": "^4.0.0",
"cssnano": "^4.1.10",
"fdir": "^3.4.2",
"fs-extra": "^9.0.0",
"minimist": "^1.2.5",
"ora": "^4.0.4",
"postcss": "^7.0.32",
"postcss-assets": "^5.0.0",
"postcss-import": "^12.0.1",
"postcss-url": "^8.0.0",
"replace-in-file": "^6.0.0",
"rollup": "^2.12.0",
"rollup-plugin-gzip": "^2.5.0",
"rollup-plugin-postcss": "^3.1.1",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-vue": "^5.1.9",
"tailwindcss": "^1.4.6",
"vue": "^2.6.11",
"vue-server-renderer": "^2.6.11",
"vue-template-compiler": "^2.6.11"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"ava": "latest",
"codecov": "latest",
"cross-env": "latest",
"eslint": "6.x",
"eslint-config-xo-lass": "latest",
"fixpack": "latest",
"husky": "latest",
"lint-staged": "latest",
"nyc": "latest",
"remark-cli": "latest",
"remark-preset-github": "latest",
"xo": "0.25"
},
"engines": {
"node": ">=8.3"
},
"homepage": "https://github.com/athif23/vue2html",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [
"converter",
"html",
"tool",
"vue"
],
"license": "MIT",
"main": "src/index.js",
"prettier": {
"singleQuote": true,
"bracketSpacing": true,
"trailingComma": "none"
},
"remarkConfig": {
"plugins": [
"preset-github"
]
},
"repository": {
"type": "git",
"url": "https://github.com/athif23/vue2html"
},
"scripts": {
"ava": "cross-env NODE_ENV=test ava",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "xo && remark . -qfo",
"nyc": "cross-env NODE_ENV=test nyc ava",
"test": "npm run lint && npm run ava",
"test-coverage": "npm run lint && npm run nyc",
"build": "rollup -c",
"watch": "rollup -c -w"
},
"xo": {
"prettier": false,
"space": 4,
"rules": {
"object-curly-spacing": "off",
"operator-linebreak": "off",
"space-before-function-paren": "off",
"no-else-return": "off",
"import/no-unassigned-import": "off",
"ava/use-t": "off",
"no-unused-expressions": "off"
}
}
}