mocha-tslint
Version:
Run TSLint as mocha tests
38 lines (37 loc) • 787 B
JSON
{
"name": "mocha-tslint",
"version": "0.3.0",
"description": "Run TSLint as mocha tests",
"main": "index.js",
"scripts": {
"test": "npm run lint && node tests/runner",
"lint": "eslint index.js tests/**/*.js tests/*.js"
},
"keywords": [
"mocha",
"tslint",
"mochaplugin"
],
"author": "Thomas Sauer",
"license": "MIT",
"devDependencies": {
"@types/node": "^7.0.0",
"es6-promise": "^4.0.5",
"eslint": "^3.13.1",
"glob-all": "^3.0.1",
"mocha": "^3.2.0",
"tslint": "^5.1.0",
"typescript": "^2.1.5"
},
"dependencies": {
"chalk": "^1.1.0"
},
"peerDependencies": {
"tslint": ">= 4",
"typescript": "2.x"
},
"repository": {
"type": "git",
"url": "git://github.com/t-sauer/mocha-tslint.git"
}
}