UNPKG

ts-unused-exports

Version:

ts-unused-exports finds unused exported symbols in your Typescript project

72 lines (71 loc) 2.39 kB
{ "name": "ts-unused-exports", "version": "11.0.1", "description": "ts-unused-exports finds unused exported symbols in your Typescript project", "main": "lib/app.js", "repository": { "type": "git", "url": "https://github.com/pzavolinsky/ts-unused-exports.git" }, "funding": "https://github.com/pzavolinsky/ts-unused-exports?sponsor=1", "keywords": [ "typescript", "tslint", "unused exports", "dead code" ], "author": "Patricio Zavolinsky", "license": "MIT", "bugs": { "url": "https://github.com/pzavolinsky/ts-unused-exports/issues" }, "homepage": "https://github.com/pzavolinsky/ts-unused-exports", "scripts": { "bump": "npm version patch", "build": "tsc", "exec": "bin/ts-unused-exports", "lint:fix": "./node_modules/.bin/eslint --ext .ts src --fix", "lint": "./node_modules/.bin/eslint --ext .ts src", "pack": "docker build -t ts-unused-exports . && docker run -v $PWD/lib:/usr/src/lib ts-unused-exports", "prepublish": "npm test", "report-coverage-to-coveralls": "cat ./coverage/lcov.info | coveralls", "test:cc": "nyc npm run test:unit:raw", "test:itest": "cd ispec && bash ./run.sh", "test:unit:only": "TS_NODE_FILES=true cucumber-js --require-module ts-node/register --exit -r src/test.ts --tags '@only'", "test:unit:raw": "TS_NODE_FILES=true cucumber-js --require-module ts-node/register --exit -r src/test.ts --tags 'not @ignore'", "test:unit": "VERBOSE=1 npm run test:unit:raw", "test": "npm run lint && npm run build && npm run test:cc && npm run test:itest", "watch": "tsc -w" }, "bin": { "ts-unused-exports": "bin/ts-unused-exports" }, "devDependencies": { "@istanbuljs/nyc-config-typescript": "^1.0.1", "@types/node": "^14.0.0", "@typescript-eslint/eslint-plugin": "^4.0.0", "@typescript-eslint/parser": "^4.0.0", "codecov": "^3.6.5", "coveralls": "^3.0.11", "eslint": "^7.0.0", "eslint-config-prettier": "^8.0.0", "eslint-plugin-prettier": "^3.1.2", "nyc": "^15.0.0", "pickled-cucumber": "^2.0.14", "prettier": "^2.0.0", "ts-node": "^9.0.0", "typescript": "^4.0.5" }, "dependencies": { "chalk": "^4.0.0", "tsconfig-paths": "^3.9.0" }, "peerDependencies": { "typescript": ">=3.8.3" }, "peerDependenciesMeta": { "typescript": { "optional": false } } }