UNPKG

ts-ignore

Version:
101 lines (100 loc) 2.99 kB
{ "name": "ts-ignore", "version": "0.0.3", "description": "ignore typescript errors", "keywords": [ "git" ], "homepage": "https://github.com/codejamninja/ts-ignore", "bugs": { "url": "https://github.com/codejamninja/ts-ignore/issues", "email": "jam@codejam.ninja" }, "license": "MIT", "author": { "name": "Jam Risser", "email": "jam@codejam.ninja", "url": "https://codejam.ninja" }, "files": [ "bin.js", "lib", "oclif.manifest.json" ], "main": "lib/index.js", "bin": { "ts-ignore": "bin.js" }, "repository": { "type": "git", "url": "https://github.com/codejamninja/ts-ignore" }, "scripts": { "babel": "babel-node --extensions \".ts,.tsx\"", "build": "npm run test && babel src -d lib --extensions \".ts,.tsx\" --source-maps inline && tsc -d --emitDeclarationOnly && oclif-dev manifest", "clean": "git clean -fXd -e \\!node_modules -e \\!node_modules/**/* && jest --clearCache", "clean:purge": "jest --clearCache && git clean -fXd", "format": "prettier --write ./**/*.{json,md,scss,yaml,yml,js,jsx,ts,tsx} --ignore-path .gitignore", "lint": "npm run format && tsc --allowJs --noEmit && eslint --ext .ts,.tsx ./", "lint:fix": "npm run format && tsc --noEmit && eslint --ext .ts,.tsx --fix ./", "prepublish": "npm run build", "start": "babel-node --extensions \".ts,.tsx\" src/bin", "test": "npm run lint && jest --coverage" }, "dependencies": { "@babel/polyfill": "^7.6.0", "@babel/runtime": "^7.6.3", "@oclif/command": "^1.5.19", "@oclif/config": "^1.13.3", "@oclif/errors": "^1.2.2", "@oclif/plugin-help": "^2.2.1", "@oclif/plugin-legacy": "^1.1.4", "@types/split": "^1.0.0", "bluebird": "^3.7.1", "core-js": "^3.3.2", "execa": "^3.1.0", "fs-extra": "^8.1.0", "ora": "^4.0.2", "pkg-dir": "^4.2.0", "ts-node": "^8.4.1", "ts-optchain.macro": "^1.1.5" }, "devDependencies": { "@babel/cli": "^7.6.4", "@babel/core": "^7.6.4", "@babel/node": "^7.6.3", "@babel/preset-react": "^7.6.3", "@babel/preset-typescript": "^7.6.0", "@oclif/dev-cli": "^1.22.2", "@types/bluebird": "^3.5.28", "@types/core-js": "^2.5.2", "@types/fs-extra": "^8.0.1", "@types/jest": "^24.0.19", "@types/lodash": "^4.14.144", "@types/node": "^12.11.1", "@typescript-eslint/eslint-plugin": "^2.4.0", "@typescript-eslint/parser": "^2.4.0", "babel-preset-jam": "^0.4.3", "eslint": "^6.5.1", "eslint-config-airbnb-typescript": "^5.0.0", "eslint-config-jam": "^0.2.20", "eslint-plugin-jest": "^22.19.0", "jest": "^24.9.0", "prettier": "^1.18.2", "tsc": "^1.20150623.0", "typescript": "^3.6.4" }, "engines": { "node": ">=6.0.0" }, "eslintIgnore": [ "lib" ], "jest": { "testRegex": "((tests(/|/.*/)[^_/]*)|\\.spec)\\.[jt]sx?$", "verbose": true, "setupFilesAfterEnv": [ "./tests/_setup.ts" ] } }