-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.24 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
{
"name": "@gluons/vue-up",
"version": "0.8.1",
"description": "Bundle Vue.js library via Rollup.",
"main": "./dist/bundle.js",
"typings": "./dist/bundle.d.ts",
"bin": "./bin/vue-up",
"files": [
"bin",
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=10"
},
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "rimraf dist/*",
"build": "tsc",
"lint": "eslint .",
"format": "prettier -w \"{{src,scripts}/**/*.ts,test/*.ts}\"",
"pretest": "npm run build && ts-node ./scripts/prepareTest.ts",
"test": "npm run lint && jest --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gluons/vue-up.git"
},
"keywords": [
"vue",
"vuejs",
"library",
"bundler",
"packager",
"rollup"
],
"author": "Saran Tanpituckpong <sarunta@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gluons/vue-up/issues"
},
"homepage": "https://gluons.github.io/vue-up/",
"prettier": "@gluons/prettier-config",
"peerDependencies": {
"vue": "2",
"vue-template-compiler": "2"
},
"dependencies": {
"@gluons/rollup-plugin-postcss-only": "^4.0.0",
"@gluons/vue-pack-dev": "^1.20.3",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"@rollup/plugin-replace": "^2.3.4",
"@sindresorhus/slugify": "^1.1.0",
"chalk": "^4.1.0",
"cssnano": "^4.1.10",
"del": "^6.0.0",
"figures": "^3.2.0",
"joycon": "^2.2.5",
"joycon-yaml-loader": "^2.0.2",
"lodash.isnil": "^4.0.0",
"lodash.pick": "^4.4.0",
"log-update": "^4.0.0",
"moren": "^3.0.0",
"nvl": "^1.3.0",
"ow": "^0.28.0",
"postcss": "^8.2.4",
"pug": "^3.0.0",
"rollup": "^2.38.0",
"rollup-plugin-resolve-alias": "^0.2.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-vue": "<=6.0.0",
"tslib": "^2.1.0",
"validate-npm-package-name": "^3.0.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@gluons/prettier-config": "^2.0.6",
"@types/cheerio": "^0.22.23",
"@types/cross-spawn": "^6.0.1",
"@types/glob": "^7.1.1",
"@types/jest": "^26.0.20",
"@types/lodash.isnil": "^4.0.6",
"@types/lodash.pick": "^4.4.6",
"@types/node": "^12.19.15",
"@types/signale": "^1.4.1",
"@types/validate-npm-package-name": "^3.0.2",
"@types/yargs": "^15.0.12",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"@vue/component-compiler-utils": "^3.2.0",
"@vue/server-test-utils": "^1.1.2",
"@vue/test-utils": "^1.1.2",
"autoprefixer": "^10.2.3",
"babel-jest": "^26.6.3",
"cheerio": "^1.0.0-rc.5",
"cross-spawn": "^7.0.3",
"eslint": "^7.18.0",
"eslint-config-gluons": "^6.1.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"vue": "^2.6.12",
"vue-class-component": "^7.2.3",
"vue-server-renderer": "^2.6.12",
"vue-template-compiler": "^2.6.12"
},
"optionalDependencies": {
"joycon-ts-loader": "^3.0.2"
}
}