code-server/packages/package.json

39 lines
825 B
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": {
"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-01-11 19:33:44 +00:00
"@coder/(.*)/testing": "<rootDir>/$1/testing",
"@coder/(.*)": "<rootDir>/$1/src"
2019-01-08 00:46:19 +00:00
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testPathIgnorePatterns": [
"/node_modules/",
"/logger/"
],
"testRegex": ".*\\.test\\.tsx?"
}
}