-
-
Notifications
You must be signed in to change notification settings - Fork 594
/
package.json
90 lines (90 loc) · 2.54 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
{
"name": "vls",
"description": "Vue Language Server",
"version": "0.8.5",
"author": "Pine Wu <[email protected]>",
"license": "MIT",
"main": "dist/vls.js",
"typings": "dist/vls.d.ts",
"bin": {
"vls": "./bin/vls"
},
"engines": {
"node": ">=10"
},
"files": [
"dist",
"bin"
],
"repository": {
"type": "git",
"url": "https://github.com/vuejs/vetur.git"
},
"homepage": "https://github.com/vuejs/vetur/tree/master/server",
"dependencies": {
"eslint": "^8.34.0",
"eslint-plugin-vue": "^9.9.0",
"prettier": "^2.8.4",
"pug-lexer": "^5.0.1",
"tslint": "6.1.3",
"typescript": "^4.9.5"
},
"resolutions": {
"typescript": "^4.9.5",
"@types/eslint": "8.21.1",
"@types/estree": "1.0.0"
},
"devDependencies": {
"@prettier/plugin-pug": "^2.4.1",
"@starptech/prettyhtml": "^0.10.0",
"@types/eslint": "8.21.1",
"@types/eslint-scope": "^3.7.4",
"@types/eslint-visitor-keys": "^3.3.0",
"@types/estree": "1.0.0",
"@types/glob": "^8.0.1",
"@types/js-beautify": "1.13.3",
"@types/lodash": "^4.14.176",
"@types/mocha": "^10.0.0",
"@types/node": "^18.14.0",
"@types/prettier": "^2.7.2",
"@types/read-pkg-up": "^6.0.0",
"@types/resolve": "1.20.2",
"bootstrap-vue-helper-json": "^1.1.1",
"codecov": "^3.8.3",
"core-js": "^3.28.0",
"element-helper-json": "^2.0.6",
"fast-glob": "^3.2.7",
"glob": "^8.1.0",
"gridsome-helper-json": "^1.0.3",
"js-beautify": "^1.14.0",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"nuxt-helper-json": "^1.0.0",
"nyc": "^15.1.0",
"parse-gitignore": "^2.0.0",
"prettier-eslint": "^15.0.1",
"prettier-tslint": "^0.4.2",
"rollup": "^3.17.0",
"sass-formatter": "^0.7.6",
"source-map-support": "^0.5.20",
"stylus": "^0.59.0",
"stylus-supremacy": "^2.17.5",
"vscode-css-languageservice": "6.2.1",
"vscode-emmet-helper": "2.6.4",
"vscode-languageserver": "7.0.0",
"vscode-languageserver-textdocument": "^1.0.2",
"vscode-languageserver-types": "3.16.0",
"vscode-uri": "^3.0.7",
"vscode-web-custom-data": "^0.3.6",
"vue-eslint-parser": "^9.1.0",
"vue-onsenui-helper-json": "^1.0.2"
},
"scripts": {
"compile": "rollup -c rollup.config.js",
"watch": "rollup -c rollup.config.js -w",
"test": "tsc -p tsconfig.test.json && mocha",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"newVersion": "yarn version --new-version patch -m \"vls %s\"",
"preversion": "yarn compile && yarn test"
}
}