-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
62 lines (62 loc) · 2.58 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
{
"name": "@microsoft/powerquery-language-services",
"version": "0.10.3",
"author": "Microsoft",
"license": "MIT",
"scripts": {
"prepublishOnly": "git clean -xdf && npm install-clean && npm run lint && npm run build && npm run test",
"build": ".\\node_modules\\.bin\\tsc",
"watch": ".\\node_modules\\.bin\\tsc -b -watch",
"link:start": "npm link && npm uninstall @microsoft/powerquery-parser @microsoft/powerquery-formatter && git clean -xdf && npm install && npm link @microsoft/powerquery-parser @microsoft/powerquery-formatter",
"link:stop": "npm unlink @microsoft/powerquery-parser @microsoft/powerquery-formatter && git clean -xdf && npm install && npm install @microsoft/powerquery-parser@latest @microsoft/powerquery-formatter@latest --save-exact",
"lint": "eslint src --ext ts",
"test": "mocha --reporter mocha-multi-reporters --reporter-options configFile=src/test/mochaConfig.json -r ts-node/register src/test/**/*.ts"
},
"homepage": "https://github.com/microsoft/powerquery-language-services#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/powerquery-language-services.git"
},
"issues": {
"url": "https://github.com/microsoft/powerquery-language-services/issues"
},
"description": "Language services for the Power Query/M formula language.",
"main": "lib/powerquery-language-services/index.js",
"types": "lib/powerquery-language-services/index.d.ts",
"engines": {
"node": ">=16.13.1"
},
"keywords": [
"power query",
"power bi"
],
"files": [
"lib/powerquery-language-services/**/*"
],
"devDependencies": {
"@types/chai": "4.3.1",
"@types/mocha": "9.1.1",
"@types/node": "17.0.33",
"@typescript-eslint/eslint-plugin": "5.24.0",
"@typescript-eslint/parser": "5.24.0",
"chai": "4.3.6",
"eslint": "8.15.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-security": "1.5.0",
"mocha": "10.0.0",
"mocha-junit-reporter": "2.0.2",
"mocha-multi-reporters": "1.5.1",
"prettier": "2.6.2",
"ts-loader": "9.3.0",
"ts-node": "10.7.0",
"typescript": "4.6.4"
},
"dependencies": {
"@microsoft/powerquery-formatter": "0.3.14",
"@microsoft/powerquery-parser": "0.15.10",
"vscode-languageserver-textdocument": "1.0.4",
"vscode-languageserver-types": "3.17.1"
}
}