{ "name": "node-typescript-boilerplate", "version": "0.0.0", "description": "Minimalistic boilerplate to quick-start Node.js development in TypeScript.", "engines": { "node": ">= 10.13 <11" }, "devDependencies": { "@types/jest": "^24.0.0", "@types/node": "^10.14.0", "jest": "~24.8.0", "prettier": "~1.17.0", "rimraf": "^2.6.3", "ts-jest": "^24.0.0", "tslint": "~5.16.0", "tslint-config-prettier": "1.18.0", "tslint-microsoft-contrib": "~6.1.0", "tsutils": "~3.10.0", "typescript": "~3.4.0" }, "scripts": { "main": "npm run build & node build/src/main.js", "clean": "rimraf coverage build tmp", "build": "tsc -p tsconfig.release.json", "build:watch": "tsc -w -p tsconfig.release.json", "lint": "tslint -t stylish --project \"tsconfig.json\"", "test": "jest --coverage", "test:watch": "jest --watch" }, "author": "Jakub Synowiec ", "license": "Apache-2.0", "dependencies": { "tslib": "~1.9.3", "commander":"^2.20.0" } }