{ "name": "xtypescript", "version": "0", "description": "Exercism exercises in Typescript.", "author": "", "private": true, "repository": { "type": "git", "url": "https://github.com/exercism/xtypescript" }, "devDependencies": {}, "scripts": { "test": "jest --no-cache", "lint": "tslint '*.ts?(x)'; exit 0" }, "dependencies": { "@types/jest": "^18.1.1", "@types/node": "^7.0.5", "jest": "^19.0.2", "ts-jest": "^19.0.0", "tslint": "^4.5.1", "typescript": "^2.2.1" }, "jest": { "transform": { ".(ts|tsx)": "/node_modules/ts-jest/preprocessor.js" }, "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$", "testResultsProcessor": "/node_modules/ts-jest/coverageprocessor.js", "moduleFileExtensions": [ "ts", "tsx", "js" ] } }