@testdeck/mocha
Version:
Object oriented testing for the Mocha test framework
74 lines (73 loc) • 1.44 kB
JSON
{
"name": "@testdeck/mocha",
"version": "0.2.0",
"description": "Object oriented testing for the Mocha test framework",
"keywords": [
"test",
"testing",
"mocha",
"typescript",
"bdd",
"tdd",
"object oriented",
"object-oriented"
],
"author": "Panayot Cankov",
"contributors": [
{
"name": "silkentrance",
"url": "https://github.com/silkentrance"
}
],
"homepage": "https://testdeck.org/",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/testdeck/testdeck.git"
},
"bin": {
"testdeck-watch": "./bin/watch"
},
"main": "dist/index.js",
"types": "index.d.ts",
"scripts": {
"prepare": "tsc",
"pretest": "tsc",
"test": "nyc mocha dist/test.js && tslint --project .",
"tslint": "tslint --project .",
"tslint-fix": "tslint --project . --fix"
},
"dependencies": {
"@testdeck/core": "^0.2.0"
},
"nyc": {
"check-coverage": true,
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 80,
"include": [
"dist/index.js"
],
"reporter": [
"lcov",
"text-summary"
],
"all": true
},
"devDependencies": {
"@types/mocha": "latest"
},
"files": [
"bin/watch",
"dist/index.js",
"dist/index.js.map",
"index.d.ts",
"index.ts",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
}
}