forked from antonk52/cssmodules-language-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.51 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
{
"name": "cssmodules-language-server",
"version": "1.2.1",
"description": "language server for cssmodules",
"bin": {
"cssmodules-language-server": "./lib/cli.js"
},
"scripts": {
"clean": "rimraf lib *.tsbuildinfo",
"build": "tsc",
"watch": "tsc --watch",
"lint": "eslint . --ext=.js,.ts",
"test": "jest",
"preversion": "npm-run-all clean build lint test",
"postversion": "npm publish && git push --follow-tags"
},
"keywords": [
"language-server",
"css-modules"
],
"author": "antonk52",
"license": "MIT",
"main": "lib/connection.js",
"files": [
"lib/*.{js,d.ts}",
"lib/!(spec)/**/*.{js,d.ts}"
],
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/lodash.camelcase": "^4.3.6",
"@types/node": "^16.11.4",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"lilconfig": "^2.0.4",
"lodash.camelcase": "^4.3.0",
"postcss": "^8.1.10",
"postcss-less": "^4.0.0",
"postcss-sass": "^0.4.4",
"postcss-scss": "^3.0.4",
"vscode-languageserver": "^7.0.0",
"vscode-languageserver-protocol": "^3.16.0",
"vscode-languageserver-textdocument": "^1.0.2",
"vscode-uri": "^3.0.2"
}
}