-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 2.32 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
{
"name": "coc-apex",
"displayName": "Coc Apex",
"description": "Language Server Client for Apex",
"version": "0.2.0",
"main": "out/src/index.js",
"publisher": "johnmutuma5",
"license": "BSD-3-Clause",
"categories": [
"Other"
],
"engines": {
"coc": ">= 0.0.70"
},
"dependencies": {
"@salesforce/apex-tmlanguage": "1.4.0",
"@salesforce/core": "2.5.1",
"coc.nvim": "0.0.77",
"cross-spawn": "6.0.5",
"expand-home-dir": "0.0.3",
"find-java-home": "0.2.0",
"glob": "^7.1.6",
"path-exists": "3.0.0",
"rxjs": "^5.4.1",
"shelljs": "0.8.3",
"strip-ansi": "^6.0.0",
"tree-kill": "^1.1.0",
"ts-loader": "^8.0.3",
"vscode-extension-telemetry": "0.0.17",
"vscode-languageclient": "5.1.1",
"vscode-languageserver-protocol": "^3.15.3"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/events": "^3.0.0",
"@types/vscode": "1.40.0",
"@types/path-exists": "^1.0.29",
"@types/rimraf": "^2.0.2",
"@types/shelljs": "0.7.4",
"@types/sinon": "^2.3.2",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.3",
"cross-env": "5.2.0",
"mocha": "^5",
"mocha-junit-reporter": "^1.23.3",
"mocha-multi-reporters": "^1.1.7",
"mock-spawn": "0.2.6",
"nyc": "^13",
"sinon": "^7.3.1",
"chai": "^4.2.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"request-light": "0.2.4",
"typescript": "3.7.5"
},
"snippets": [
{
"language": "apexcode",
"path": "./snippets/apexcode.snippets"
}
],
"scripts": {
"compile": "tsc -b tsconfig.json",
"lint": "tslint --project .",
"watch": "tsc -watch -p .",
"clean": "shx rm -rf node_modules && shx rm -rf out",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "node ./node_modules/nyc/bin/nyc.js ./node_modules/mocha/bin/_mocha --recursive --recursive out/test/unit --reporter mocha-multi-reporters --reporter-options configFile=../../config/mochaUnitTestsConfig.json",
"test:integration": "node ./node_modules/cross-env/dist/bin/cross-env.js VSCODE_NLS_CONFIG={} ./node_modules/nyc/bin/nyc.js ./node_modules/mocha/bin/_mocha --recursive out/test/integration --reporter mocha-multi-reporters --reporter-options configFile=../../config/mochaIntegrationTestsConfig.json"
}
}