forked from dotnet/try
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.15 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.15 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@microsoft/trydotnet.editor.js",
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"generateApiSimulator": "pwsh ./generateApiSimulator.ps1",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "mocha tests/**/*.tests.ts",
"build": "webpack --mode production",
"buildProd": "webpack --config ./webpack.config.js --config ./webpack-prod.config.js --merge",
"buildDev": "webpack --mode development",
"ciTest": "npm run ciCreateDir && npm test -- --reporter mocha-multi-reporters --reporter-options configFile=testConfig.json",
"ciCreateDir": "npx mkdirp ../../artifacts/TestResults/Release"
},
"author": "",
"license": "MIT",
"repository": {
"url": "https://github.com/dotnet/try"
},
"devDependencies": {
"@testdeck/mocha": "^0.3.3",
"@types/chai": "^5.2.3",
"@types/chai-as-promised": "^8.0.2",
"@types/mocha": "^10.0.10",
"@types/node": "^25.5.0",
"@types/tmp": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.58.0",
"chai": "6.2.2",
"chai-as-promised": "8.0.2",
"css-loader": "^7.1.4",
"eslint": "^8.57.0",
"file-loader": "6.2.0",
"html-webpack-plugin": "^5.6.6",
"jsdom": "^29.0.1",
"mocha": "11.7.5",
"mocha-multi-reporters": "1.5.1",
"mocha-trx-reporter": "3.3.1",
"monaco-editor-webpack-plugin": "^7.1.1",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"tmp": "^0.2.5",
"ts-loader": "^9.5.4",
"ts-mocha": "^11.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"webpack": "^5.105.3",
"webpack-cli": "6.0.1"
},
"dependencies": {
"@microsoft/polyglot-notebooks": "1.0.720202",
"monaco-editor": "0.33.0",
"rxjs": "7.8.2",
"uuid": "13.0.0"
},
"mocha": {
"ui": "bdd",
"timeout": "10000",
"require": [
"ts-node/register"
],
"watch-files": [
"tests/**/*.tests.ts"
],
"mochaExplorer.files": "test/**/*.tests.ts",
"mochaExplorer.require": "ts-node/register"
}
}