code-server/packages/package.json

48 lines
1.1 KiB
JSON
Raw Normal View History

2019-01-08 00:46:19 +00:00
{
"scripts": {
"postinstall": "../node_modules/.bin/ts-node ../scripts/install-packages.ts",
2019-01-08 00:46:19 +00:00
"test": "jest"
},
"devDependencies": {
"@types/jest": "^23.3.12",
"jest": "^23.6.0",
"ts-jest": "^23.10.5"
2019-01-08 00:46:19 +00:00
},
"dependencies": {
"xmlhttprequest": "1.8.0"
},
"jest": {
"globals": {
"ts-jest": {
"diagnostics": false
}
},
2019-01-08 00:46:19 +00:00
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"setupFiles": [
"<rootDir>/../scripts/test-setup.js"
2019-01-08 00:46:19 +00:00
],
"moduleNameMapper": {
"^.+\\.(s?css|png|svg)$": "<rootDir>/../scripts/dummy.js",
2019-02-19 21:30:56 +00:00
"@coder/ide/src/fill/evaluation": "<rootDir>/ide/src/fill/evaluation",
2019-02-19 21:38:17 +00:00
"@coder/ide/src/fill/client": "<rootDir>/ide/src/fill/client",
2019-02-19 20:21:04 +00:00
"@coder/(.*)/test": "<rootDir>/$1/test",
"@coder/(.*)": "<rootDir>/$1/src",
"vs/(.*)": "<rootDir>/../lib/vscode/src/vs/$1",
"vszip": "<rootDir>/../lib/vscode/src/vs/base/node/zip.ts"
2019-01-08 00:46:19 +00:00
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testPathIgnorePatterns": [
"/node_modules/",
"/logger/"
],
"testRegex": ".*\\.test\\.tsx?"
}
}