ts-standardx
Version:
Yet another configurable linter for TypeScript and JavaScript.
71 lines (70 loc) • 1.92 kB
JSON
{
"name": "ts-standardx",
"version": "0.8.4",
"description": "Yet another configurable linter for TypeScript and JavaScript.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"bin": {
"ts-standardx": "bin/cmd.js"
},
"scripts": {
"clean": "rm -rf .cache dist",
"dts": "tsc -p tsconfig.dts.json",
"bundle": "rollup -c",
"build": "npm run clean && npm run dts && npm run bundle",
"lint": "./bin/cmd.js",
"lint:fix": "./bin/cmd.js --fix",
"test": "npm run build && npm run lint && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/exuanbo/ts-standardx.git"
},
"keywords": [
"standard",
"standardx",
"ts-standard",
"typescript",
"eslint",
"lint",
"prettier"
],
"author": "exuanbo",
"license": "MIT",
"bugs": {
"url": "https://github.com/exuanbo/ts-standardx/issues"
},
"homepage": "https://github.com/exuanbo/ts-standardx#readme",
"dependencies": {
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-config-standard-jsx": "10.0.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-react": "7.26.1",
"prettier": "2.4.1",
"standard-engine-ts": "0.9.0"
},
"devDependencies": {
"@types/jest": "27.0.2",
"@types/node": "16.10.2",
"esbuild": "0.13.3",
"jest": "27.2.4",
"rollup": "2.58.0",
"rollup-plugin-dts": "4.0.0",
"rollup-plugin-esbuild-transform": "1.1.1",
"ts-jest": "27.0.5",
"typescript": "4.4.3"
}
}