-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.31 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
{
"name": "api-test-loader",
"description": "Load and run tests in the current workspace",
"version": "0.0.1",
"publisher": "jpinkney",
"license": "MIT",
"activationEvents": [
"*"
],
"main": "./lib/extension",
"engines": {
"theiaPlugin": "next"
},
"files": [
"src"
],
"scripts": {
"prepare": "yarn clean && yarn build",
"clean": "rimraf lib",
"format": "tsfmt -r --useTsfmt ../../configs/tsfmt.json",
"lint": "tslint -c ../../configs/tslint.json --project tsconfig.json",
"lint:fix": "tslint -c ../../configs/tslint.json --fix --project .",
"compile": "tsc",
"build": "concurrently -n \"format,lint,compile\" -c \"red,green,blue\" \"yarn format\" \"yarn lint\" \"yarn compile\" && theia:plugin pack",
"watch": "tsc -w"
},
"devDependencies": {
"@types/mocha": "2.2.43",
"@types/node": "^12.11.7",
"mocha": "^6.2.2",
"mocha-junit-reporter": "^1.17.0",
"mocha-multi-reporters": "^1.1.7",
"ts-mocha": "^6.0.0",
"typescript": "^2.0.x"
},
"dependencies": {
"@eclipse-che/api": "^7.5.0-SNAPSHOT",
"@eclipse-che/plugin": "0.0.1-1576925688",
"@theia/plugin": "^0.14.0",
"@types/vscode": "^1.41.0",
"ts-node": "^8.5.2",
"vscode-test": "^1.2.3"
},
"theiaPlugin": {
"backend": "lib/extension.js"
}
}