-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.64 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
{
"scripts": {
"compile": "tsc -p ./",
"lint": "eslint ./ --ext ts --fix",
"build": "npm install && npm run lint && npm run chrome/build && npm run vscode/build",
"chrome/build": "webpack --config build/webpack.chrome.js --mode development",
"chrome/watch": "webpack --config build/webpack.chrome.js --mode development --watch",
"chrome/pre-publish": "npm run test && webpack --config build/webpack.chrome.js --mode production",
"chrome/publish": "npm run chrome/pre-publish && node ./build/publish.chrome.js",
"vscode/build": "webpack --config build/webpack.vscode.js --mode development",
"vscode/watch": "webpack --config build/webpack.vscode.js --mode development --watch",
"vscode/pre-publish": "npm run test && webpack --config build/webpack.vscode.js --mode production",
"vscode/publish": "npm run vscode/pre-publish && cd dist/vscode && vsce package --out ../../releases/vscode",
"test": "npm run lint && jest --coverage"
},
"jest": {
"testRegex": "/test/.*\\.test\\.(js|jsx|ts)$",
"testMatch": null,
"preset": "ts-jest"
},
"dependencies": {
"js-yaml": "^3.5.5",
"jsonschema": "1.2.6"
},
"devDependencies": {
"@types/chrome": "0.0.100",
"@types/jest": "25.2.1",
"@types/js-yaml": "^3.5.5",
"@types/node": "^12.11.7",
"@types/vscode": "^1.43.0",
"@typescript-eslint/parser": "^2.18.0",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"eslint": "^6.8.0",
"jest": "25.2.7",
"ts-loader": "^6.2.1",
"ts-jest": "25.3.1",
"typescript": "^3.7.5",
"vsce": "1.74.0",
"webpack": "~4.42.0",
"webpack-cli": "~3.3.11",
"zip-dir": "1.0.2"
}
}