tsconfig-lint
Version:
A tsconfig tool for running tslint on files found in the tsconfig. Integrates with tsconfig-glob to allow for `filesGlob` in the tsconfig.json.
43 lines (42 loc) • 1.07 kB
JSON
{
"name": "tsconfig-lint",
"version": "0.12.0",
"description": "A tsconfig tool for running tslint on files found in the tsconfig. Integrates with tsconfig-glob to allow for `filesGlob` in the tsconfig.json.",
"main": "index.js",
"bin": {
"tsconfig-lint": "cli"
},
"repository": {
"type": "git",
"url": "https://github.com/wjohnsto/tsconfig-lint.git"
},
"keywords": [
"tsconfig",
"glob",
"filesGlob"
],
"author": "Will Johnston <will@platypi.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wjohnsto/tsconfig-lint/issues"
},
"homepage": "https://github.com/wjohnsto/tsconfig-lint",
"dependencies": {
"exit": "^0.1.2",
"glob": "^7.0.3",
"resolve": "^1.1.7",
"stable": "^0.1.5",
"tslint": "^3.6.0"
},
"devDependencies": {
"typescript": "^2.0.3",
"typings": "^1.3.3"
},
"scripts": {
"prepublish": "npm run typings && npm run build",
"build": "tsc -p .",
"cli": "npm run build && node cli",
"test": "npm run cli",
"typings": "typings install"
}
}