forked from microsoft/vscode-css-languageservice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 2.15 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
{
"name": "vscode-css-languageservice",
"version": "6.2.11",
"description": "Language service for CSS, LESS and SCSS",
"main": "./lib/umd/cssLanguageService.js",
"typings": "./lib/umd/cssLanguageService",
"module": "./lib/esm/cssLanguageService.js",
"author": "Microsoft Corporation",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-css-languageservice"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Microsoft/vscode-css-languageservice"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "16.x",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"@vscode/web-custom-data": "^0.4.8",
"eslint": "^8.54.0",
"js-beautify": "^1.14.11",
"mocha": "^10.2.0",
"rimraf": "^5.0.5",
"source-map-support": "^0.5.21",
"typescript": "^5.2.2"
},
"dependencies": {
"@vscode/l10n": "^0.0.16",
"vscode-languageserver-textdocument": "^1.0.11",
"vscode-languageserver-types": "3.17.5",
"vscode-uri": "^3.0.8"
},
"scripts": {
"prepack": "npm run clean && npm run compile-esm && npm run test && npm run remove-sourcemap-refs",
"compile": "tsc -p ./src && npm run copy-jsbeautify && npm run lint ",
"compile-esm": "tsc -p ./src/tsconfig.esm.json",
"clean": "rimraf lib",
"remove-sourcemap-refs": "node ./build/remove-sourcemap-refs.js",
"watch": "npm run copy-jsbeautify && tsc -w -p ./src",
"test": "npm run compile && npm run mocha",
"mocha": "mocha --require source-map-support/register",
"coverage": "npm run compile && npx nyc --reporter=html --reporter=text mocha",
"lint": "eslint src/**/*.ts",
"update-data": "npm install @vscode/web-custom-data -D && node ./build/generateData.js",
"install-types-next": "npm install vscode-languageserver-types@next -f -S && npm install vscode-languageserver-textdocument@next -f -S",
"copy-jsbeautify": "node ./build/copy-jsbeautify.js",
"update-jsbeautify": "npm install js-beautify && node ./build/update-jsbeautify.js",
"update-jsbeautify-next": "npm install js-beautify@next && node ./build/update-jsbeautify.js"
}
}