-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.07 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.07 KB
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
{
"name": "vscode-trace-common",
"private": "true",
"version": "0.7.0",
"repository": "https://github.com/eclipse-cdt-cloud/vscode-trace-extension/",
"main": "lib",
"files": [
"lib",
"src"
],
"dependencies": {
"traceviewer-base": "0.10.0",
"tsp-typescript-client": "^0.9.0",
"vscode-messenger": "^0.5.0"
},
"devDependencies": {
"@types/jest": "^23.3.13",
"@types/node": "^10.1.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.43.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-react": "^7.20.0",
"typescript": "^4.1.3"
},
"scripts": {
"prepare": "yarn run clean && yarn run build",
"build": "tsc -p tsconfig.json",
"clean": "rimraf lib *.tsbuildinfo",
"lint": "eslint .",
"test": "echo 'test'",
"format:write": "prettier --write ./src",
"format:check": "prettier --check ./src"
}
}