Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/test/smoke/package.json
3520 views
1
{
2
"name": "code-oss-dev-smoke-test",
3
"version": "0.1.0",
4
"license": "MIT",
5
"main": "./src/main.js",
6
"scripts": {
7
"compile": "cd ../automation && npm run compile && cd ../smoke && node ../../node_modules/typescript/bin/tsc",
8
"watch-automation": "cd ../automation && npm run watch",
9
"watch-smoke": "node ../../node_modules/typescript/bin/tsc --watch --preserveWatchOutput",
10
"watch": "npm-run-all -lp watch-automation watch-smoke",
11
"mocha": "node ../node_modules/mocha/bin/mocha"
12
},
13
"dependencies": {
14
"ncp": "^2.0.0",
15
"node-fetch": "^2.6.7"
16
},
17
"devDependencies": {
18
"@types/ncp": "2.0.1",
19
"@types/node": "22.x",
20
"@types/node-fetch": "^2.5.10",
21
"npm-run-all": "^4.1.5"
22
}
23
}
24
25