mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-25 04:36:23 +00:00
24 lines
732 B
JSON
24 lines
732 B
JSON
{
|
|
"name": "code-oss-dev-smoke-test",
|
|
"version": "0.1.0",
|
|
"license": "MIT",
|
|
"main": "./src/main.js",
|
|
"scripts": {
|
|
"compile": "cd ../automation && npm run compile && cd ../smoke && node ../../node_modules/typescript/bin/tsc",
|
|
"watch-automation": "cd ../automation && npm run watch",
|
|
"watch-smoke": "node ../../node_modules/typescript/bin/tsc --watch --preserveWatchOutput",
|
|
"watch": "npm-run-all -lp watch-automation watch-smoke",
|
|
"mocha": "node ../node_modules/mocha/bin/mocha"
|
|
},
|
|
"dependencies": {
|
|
"ncp": "^2.0.0",
|
|
"node-fetch": "^2.6.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/ncp": "2.0.1",
|
|
"@types/node": "22.x",
|
|
"@types/node-fetch": "^2.5.10",
|
|
"npm-run-all": "^4.1.5"
|
|
}
|
|
}
|