36 lines
860 B
JSON
36 lines
860 B
JSON
{
|
|
"name": "xtypescript",
|
|
"version": "0",
|
|
"description": "Exercism exercises in Typescript.",
|
|
"author": "",
|
|
"private": true,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/exercism/xtypescript"
|
|
},
|
|
"devDependencies": {},
|
|
"scripts": {
|
|
"test": "tsc --noEmit -p . && jest --no-cache",
|
|
"lint": "tsc --noEmit -p . && tslint \"*.ts?(x)\"",
|
|
"lintci": "tslint \"*.ts?(x)\" --force"
|
|
},
|
|
"dependencies": {
|
|
"@types/jest": "^20.0.0",
|
|
"@types/node": "^7.0.5",
|
|
"jest": "^20.0.4",
|
|
"ts-jest": "^20.0.6",
|
|
"tslint": "^5.4.3",
|
|
"typescript": "^2.2.1"
|
|
},
|
|
"jest": {
|
|
"transform": {
|
|
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
|
|
},
|
|
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
|
|
"moduleFileExtensions": [
|
|
"ts",
|
|
"tsx",
|
|
"js"
|
|
]
|
|
}
|
|
}
|