-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
104 lines (104 loc) · 3.21 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
{
"name": "@cucumber/language-server",
"version": "1.6.0",
"description": "Cucumber Language Server",
"engines": {
"node": ">=16.0.0"
},
"type": "module",
"main": "dist/cjs/src/index.js",
"module": "dist/esm/src/index.js",
"types": "dist/esm/src/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/src/index.js",
"require": "./dist/cjs/src/index.js"
},
"./node": {
"import": "./dist/esm/src/node/index.js",
"require": "./dist/cjs/src/node/index.js"
},
"./wasm": {
"import": "./dist/esm/src/wasm/index.js",
"require": "./dist/cjs/src/wasm/index.js"
}
},
"files": [
"dist/cjs/src",
"dist/cjs/package.json",
"dist/esm/src",
"node",
"wasm"
],
"bin": {
"cucumber-language-server": "bin/cucumber-language-server.cjs"
},
"scripts": {
"build:cjs": "tsc --build tsconfig.build-cjs.json && cp package.cjs.json dist/cjs/package.json",
"build:esm": "tsc --build tsconfig.build-esm.json",
"build:version": "node --eval \"console.log('export const version = \\'' + require('./package.json').version + '\\'')\" > src/version.ts",
"build": "npm run build:version && npm run build:cjs && npm run build:esm",
"test": "npm run test:cjs",
"test:cjs": "npm run build:cjs && mocha --no-config --recursive dist/cjs/test",
"pretest": "npm run build:version",
"prepublishOnly": "npm run build",
"eslint-fix": "eslint --ext ts --max-warnings 0 --fix src test",
"eslint": "eslint --ext ts --max-warnings 0 src test",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git://github.com/cucumber/language-server.git"
},
"keywords": [
"cucumber",
"gherkin",
"lsp"
],
"author": "Cucumber Limited <[email protected]>",
"contributors": [
"Aslak Hellesøy <[email protected]>",
"Aurélien Reeves <[email protected]>",
"Binh Duc Tran <[email protected]>",
"Kieran Ryan <[email protected]>",
"William Boman <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cucumber/language-server/issues"
},
"homepage": "https://github.com/cucumber/language-server#readme",
"lint-staged": {
"{src,test}/**/*.ts": "npm run eslint-fix"
},
"devDependencies": {
"@cucumber/cucumber": "11.0.1",
"@types/mocha": "10.0.9",
"@types/node": "22.9.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.12.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"husky": "9.1.6",
"lint-staged": "^15.2.0",
"mocha": "10.8.2",
"prettier": "3.3.3",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"vscode-jsonrpc": "8.2.1",
"vscode-languageserver-protocol": "3.17.2"
},
"dependencies": {
"@cucumber/gherkin-utils": "^9.0.0",
"@cucumber/language-service": "^1.5.0",
"fast-glob": "3.3.2",
"source-map-support": "0.5.21",
"vscode-languageserver": "8.0.2",
"vscode-languageserver-textdocument": "1.0.12",
"vscode-languageserver-types": "3.17.5"
}
}