tslint-origin-ordered-imports-rule
Version:
tslint rule to check order of imports
43 lines (42 loc) • 1.15 kB
JSON
{
"name": "tslint-origin-ordered-imports-rule",
"version": "2.0.0",
"description": "tslint rule to check order of imports",
"main": "dist/originOrderedImportsRule.js",
"repository": {
"type": "git",
"url": "https://github.com/marcuzy/tslint-origin-ordered-imports-rule.git"
},
"scripts": {
"prepublishOnly": "rm -rf ./dist && npm-run-all -c compile test",
"watch": "nodemon --delay 3s -e js,ts,lint,fix,json --watch src --watch test --exec \"npm run compile && npm run test\"",
"compile": "npm-run-all -s compile:lib",
"compile:lib": "tsc",
"test": "npm run test:rules",
"test:rules": "tslint --test ./test/rules/**"
},
"keywords": [
"tslint",
"rule",
"imports",
"imports origin",
"imports order",
"check imports",
"typescript"
],
"author": "Oleg Krasavin <t5633@ya.ru>",
"license": "MIT",
"devDependencies": {
"@types/node": "^10.3.2",
"nodemon": "^2.0.12",
"npm-run-all": "^4.1.3",
"tslint": "^6.1.3",
"typescript": "^4.3.5"
},
"peerDependencies": {
"typescript": ">=2.8.0"
},
"dependencies": {
"tsutils": "^3.21.0"
}
}