js__typescript__jest/package.json

23 lines
627 B
JSON

{
"author": "Michael Tiller",
"description": "Demo how to use Jest with Typescript code",
"devDependencies": {
"@types/jest": "^23.3.1",
"jest": "^23.5.0",
"ts-jest": "^23.1.3",
"tslint": "^5.11.0",
"typescript": "^3.0.1"
},
"license": "MIT",
"main": "lib/src/index.js",
"name": "typescript",
"private": false,
"repository": "https://medium.com/@mtiller/debugging-with-typescript-jest-ts-jest-and-visual-studio-code-ef9ca8644132",
"scripts": {
"compile": "tsc",
"lint": "tslint -p tsconfig.json",
"test": "jest"
},
"typings": "lib/src/index.d.ts",
"version": "1.0.0"
}