forked from vuejs/vetur
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.27 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
{
"name": "vls",
"description": "Vue Language Server",
"version": "0.5.3",
"author": "Pine Wu <[email protected]>",
"license": "MIT",
"main": "dist/main.js",
"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": {
"@prettier/plugin-pug": "^1.6.1",
"@starptech/prettyhtml": "^0.10.0",
"bootstrap-vue-helper-json": "^1.1.1",
"core-js": "^3.6.5",
"element-helper-json": "^2.0.6",
"eslint": "^7.9.0",
"eslint-plugin-vue": "^7.0.0-beta.3",
"gridsome-helper-json": "^1.0.3",
"js-beautify": "^1.13.0",
"lodash": "^4.17.20",
"nuxt-helper-json": "^1.0.0",
"parse-gitignore": "^1.0.1",
"prettier": "^2.1.2",
"prettier-eslint": "^11.0.0",
"prettier-tslint": "^0.4.2",
"read-pkg-up": "^7.0.1",
"resolve": "^1.17.0",
"sass-formatter": "^0.4.15",
"stylus": "^0.54.8",
"stylus-supremacy": "^2.14.5",
"typescript": "^4.0.2",
"vscode-css-languageservice": "4.1.0",
"vscode-emmet-helper": "^2.0.0",
"vscode-languageserver": "^6.1.1",
"vscode-languageserver-textdocument": "^1.0.1",
"vscode-languageserver-types": "^3.15.1",
"vscode-uri": "^2.1.2",
"vscode-web-custom-data": "^0.3.1",
"vue-eslint-parser": "^7.1.0",
"vue-onsenui-helper-json": "^1.0.2"
},
"devDependencies": {
"@types/eslint": "^7.2.2",
"@types/eslint-scope": "^3.7.0",
"@types/eslint-visitor-keys": "^1.0.0",
"@types/glob": "^7.1.3",
"@types/js-beautify": "^1.11.0",
"@types/lodash": "^4.14.161",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.1",
"@types/prettier": "^2.1.1",
"@types/read-pkg-up": "^6.0.0",
"@types/resolve": "1.17.1",
"codecov": "^3.7.2",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"source-map-support": "^0.5.19"
},
"scripts": {
"compile": "tsc -p .",
"watch": "tsc --watch",
"test": "mocha",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"newVersion": "yarn version --new-version patch -m \"vls %s\"",
"preversion": "yarn compile && yarn test"
}
}