package.json 5.5 KB
Newer Older
E
Erich Gamma 已提交
1
{
A
Alex Dima 已提交
2
  "name": "code-oss-dev",
S
SteVen Batten 已提交
3
  "version": "1.43.0",
C
chrisdias 已提交
4
  "distro": "466c88f52cc67d1bc57378639bc2f32e93dfa572",
A
Alex Dima 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
  "author": {
    "name": "Microsoft Corporation"
  },
  "license": "MIT",
  "main": "./out/main",
  "private": true,
  "scripts": {
    "test": "mocha",
    "preinstall": "node build/npm/preinstall.js",
    "postinstall": "node build/npm/postinstall.js",
    "compile": "gulp compile --max_old_space_size=4095",
    "watch": "gulp watch --max_old_space_size=4095",
    "watch-client": "gulp watch-client --max_old_space_size=4095",
    "monaco-editor-test": "mocha --only-monaco-editor",
    "precommit": "node build/gulpfile.hygiene.js",
    "gulp": "gulp --max_old_space_size=8192",
J
Joao Moreno 已提交
21
    "electron": "node build/lib/electron",
A
Alex Dima 已提交
22 23 24 25 26 27
    "7z": "7z",
    "update-grammars": "node build/npm/update-all-grammars.js",
    "update-localization-extension": "node build/npm/update-localization-extension.js",
    "smoketest": "cd test/smoke && node test/index.js",
    "download-builtin-extensions": "node build/lib/builtInExtensions.js",
    "monaco-compile-check": "tsc -p src/tsconfig.monaco.json --noEmit",
28
    "valid-layers-check": "node build/lib/layersChecker.js",
M
Matt Bierner 已提交
29
    "strict-function-types-watch": "tsc --watch -p src/tsconfig.json --noEmit --strictFunctionTypes",
30
    "update-distro": "node build/npm/update-distro.js",
J
Johannes Rieken 已提交
31
    "web": "node scripts/code-web.js",
32
    "eslint": "eslint -c .eslintrc.json --rulesdir ./build/lib/eslint --ext .ts --ext .js ./src/vs ./extensions"
A
Alex Dima 已提交
33 34 35
  },
  "dependencies": {
    "applicationinsights": "1.0.8",
B
Benjamin Pasero 已提交
36
    "chokidar": "3.2.3",
37
    "graceful-fs": "4.2.3",
A
Alex Dima 已提交
38
    "http-proxy-agent": "^2.1.0",
C
Christof Marti 已提交
39
    "https-proxy-agent": "^2.2.3",
A
Alex Dima 已提交
40
    "iconv-lite": "0.5.0",
B
Benjamin Pasero 已提交
41
    "jschardet": "2.1.1",
A
Alex Dima 已提交
42
    "keytar": "^4.11.0",
B
Benjamin Pasero 已提交
43
    "native-is-elevated": "0.4.1",
44
    "native-keymap": "2.1.1",
45
    "native-watchdog": "1.3.0",
D
Daniel Imms 已提交
46
    "node-pty": "^0.10.0-beta2",
47
    "onigasm-umd": "2.2.5",
S
Sandeep Somavarapu 已提交
48
    "semver-umd": "^5.5.5",
J
Joao Moreno 已提交
49
    "spdlog": "^0.11.1",
B
Benjamin Pasero 已提交
50
    "sudo-prompt": "9.1.1",
A
Alex Dima 已提交
51
    "v8-inspect-profiler": "^0.0.20",
52
    "vscode-minimist": "^1.2.2",
R
Robo 已提交
53
    "vscode-nsfw": "1.2.8",
C
Christof Marti 已提交
54
    "vscode-proxy-agent": "^0.5.2",
R
Rob Lourens 已提交
55
    "vscode-ripgrep": "^1.5.7",
56
    "vscode-sqlite3": "4.0.9",
57
    "vscode-textmate": "4.4.0",
D
Daniel Imms 已提交
58
    "xterm": "4.4.0",
D
Daniel Imms 已提交
59
    "xterm-addon-search": "0.4.0",
D
Daniel Imms 已提交
60
    "xterm-addon-web-links": "0.2.1",
D
Daniel Imms 已提交
61
    "xterm-addon-webgl": "0.5.0",
A
Alex Dima 已提交
62 63 64 65 66
    "yauzl": "^2.9.2",
    "yazl": "^2.4.3"
  },
  "devDependencies": {
    "7zip": "0.0.6",
67
    "@types/applicationinsights": "0.20.0",
68
    "@types/chokidar": "2.1.3",
A
Alex Dima 已提交
69
    "@types/cookie": "^0.3.3",
70
    "@types/graceful-fs": "4.1.2",
C
Christof Marti 已提交
71
    "@types/http-proxy-agent": "^2.0.1",
72
    "@types/iconv-lite": "0.0.1",
A
Alex Dima 已提交
73 74
    "@types/keytar": "^4.4.0",
    "@types/mocha": "2.2.39",
75
    "@types/node": "^12.11.7",
A
Alex Dima 已提交
76
    "@types/sinon": "^1.16.36",
77
    "@types/vscode-windows-registry": "^1.0.0",
A
Alex Dima 已提交
78
    "@types/webpack": "^4.4.10",
79
    "@types/windows-foreground-love": "^0.3.0",
B
Benjamin Pasero 已提交
80
    "@types/windows-mutex": "^0.4.0",
81
    "@types/windows-process-tree": "^0.2.0",
A
Alex Dima 已提交
82
    "@types/winreg": "^1.2.30",
83 84
    "@types/yauzl": "^2.9.1",
    "@types/yazl": "^2.4.2",
85
    "@typescript-eslint/eslint-plugin": "2.3.2",
86
    "@typescript-eslint/parser": "^2.12.0",
A
Alex Dima 已提交
87 88 89 90 91 92 93
    "ansi-colors": "^3.2.3",
    "asar": "^0.14.0",
    "chromium-pickle-js": "^0.2.0",
    "copy-webpack-plugin": "^4.5.2",
    "coveralls": "^2.11.11",
    "cson-parser": "^1.3.3",
    "debounce": "^1.0.0",
94
    "electron": "6.1.6",
95
    "eslint": "6.8.0",
96
    "eslint-plugin-jsdoc": "^19.1.0",
A
Alex Dima 已提交
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
    "event-stream": "3.3.4",
    "express": "^4.13.1",
    "fancy-log": "^1.3.3",
    "fast-plist": "0.1.2",
    "glob": "^5.0.13",
    "gulp": "^4.0.0",
    "gulp-atom-electron": "^1.22.0",
    "gulp-azure-storage": "^0.10.0",
    "gulp-buffer": "0.0.2",
    "gulp-concat": "^2.6.1",
    "gulp-cssnano": "^2.1.3",
    "gulp-eslint": "^5.0.0",
    "gulp-filter": "^5.1.0",
    "gulp-flatmap": "^1.0.2",
    "gulp-gunzip": "^1.0.0",
    "gulp-json-editor": "^2.5.0",
    "gulp-plumber": "^1.2.0",
    "gulp-remote-retry-src": "^0.6.0",
    "gulp-rename": "^1.2.0",
    "gulp-replace": "^0.5.4",
    "gulp-shell": "^0.6.5",
118
    "gulp-tsb": "4.0.5",
A
Alex Dima 已提交
119 120
    "gulp-untar": "^0.0.7",
    "gulp-vinyl-zip": "^2.1.2",
121
    "husky": "^0.13.1",
A
Alex Dima 已提交
122 123
    "innosetup": "5.6.1",
    "is": "^3.1.0",
A
Alexandru Dima 已提交
124 125 126 127 128
    "istanbul-lib-coverage": "^3.0.0",
    "istanbul-lib-instrument": "^4.0.0",
    "istanbul-lib-report": "^3.0.0",
    "istanbul-lib-source-maps": "^4.0.0",
    "istanbul-reports": "^3.0.0",
A
Alex Dima 已提交
129 130 131 132 133 134 135 136
    "jsdom-no-contextify": "^3.1.0",
    "lazy.js": "^0.4.2",
    "merge-options": "^1.0.1",
    "mime": "^1.4.1",
    "minimatch": "^3.0.4",
    "mkdirp": "^0.5.0",
    "mocha": "^2.2.5",
    "mocha-junit-reporter": "^1.17.0",
137
    "opn": "^6.0.0",
A
Alex Dima 已提交
138 139 140 141 142 143 144 145 146
    "optimist": "0.3.5",
    "p-all": "^1.0.0",
    "pump": "^1.0.1",
    "queue": "3.0.6",
    "rcedit": "^1.1.0",
    "rimraf": "^2.2.8",
    "sinon": "^1.17.2",
    "source-map": "^0.4.4",
    "ts-loader": "^4.4.2",
147
    "typescript": "3.8.0-dev.20200128",
A
Alex Dima 已提交
148 149 150 151 152
    "typescript-formatter": "7.1.0",
    "underscore": "^1.8.2",
    "vinyl": "^2.0.0",
    "vinyl-fs": "^3.0.0",
    "vsce": "1.48.0",
153
    "vscode-debugprotocol": "1.37.0",
A
Alex Dima 已提交
154 155
    "vscode-nls-dev": "^3.3.1",
    "webpack": "^4.16.5",
156
    "webpack-cli": "^3.3.8",
A
Alex Dima 已提交
157 158 159 160 161 162 163 164 165 166
    "webpack-stream": "^5.1.1"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/Microsoft/vscode.git"
  },
  "bugs": {
    "url": "https://github.com/Microsoft/vscode/issues"
  },
  "optionalDependencies": {
167
    "vscode-windows-ca-certs": "0.2.0",
A
Alex Dima 已提交
168 169
    "vscode-windows-registry": "1.0.2",
    "windows-foreground-love": "0.2.0",
170
    "windows-mutex": "0.3.0",
A
Alex Dima 已提交
171 172
    "windows-process-tree": "0.2.4"
  }
A
Alex Dima 已提交
173
}