recipe-ts-runtime
Version:
TypeScript run-time library for the Recipe framework
44 lines (43 loc) • 1.07 kB
JSON
{
"name": "recipe-ts-runtime",
"version": "0.4.0",
"description": "TypeScript run-time library for the Recipe framework",
"author": "Derek Cormier",
"homepage": "https://github.com/kormide/recipe",
"license": "MIT",
"keywords": [
"recipe",
"ingredient",
"integration",
"testing"
],
"repository": {
"type": "git",
"url": "https://github.com/kormide/recipe"
},
"private": false,
"main": "target/dist/index.js",
"types": "target/dist/index.d.ts",
"files": [
"target/dist/"
],
"devDependencies": {
"@types/chai": "4.2.7",
"@types/mocha": "5.2.7",
"@types/node": "13.1.0",
"@types/sinon": "7.5.1",
"@types/sinon-chai": "3.2.3",
"chai": "4.2.0",
"mocha": "6.2.2",
"sinon": "8.0.1",
"sinon-chai": "3.4.0",
"ts-node": "8.5.4",
"tslint": "5.20.1",
"typescript": "3.7.4"
},
"scripts": {
"build": "tsc",
"lint": "tslint -c ./tslint.json --project ./tsconfig-all.json ./src/**/*.ts",
"test": "mocha --require ts-node/register/type-check src/**/*.spec.ts"
}
}