51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
|
{
|
||
|
"name": "ts-prune",
|
||
|
"version": "0.10.3",
|
||
|
"main": "lib/index.js",
|
||
|
"author": "Nadeesha Cabral <n@nadeesha.me>",
|
||
|
"license": "MIT",
|
||
|
"scripts": {
|
||
|
"build": "tsc",
|
||
|
"prepublish": "rm -rf lib && yarn build",
|
||
|
"pretest": "npm run lint",
|
||
|
"test": "jest --coverage",
|
||
|
"test:integration": "sh integration/test.sh",
|
||
|
"lint": "eslint . --cache --fix --ext .ts,.tsx",
|
||
|
"semantic-release": "semantic-release"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@types/jest": "^25.2.1",
|
||
|
"@types/json5": "^0.0.30",
|
||
|
"@types/lodash": "^4.14.150",
|
||
|
"@types/node": "^13.13.1",
|
||
|
"@typescript-eslint/parser": "^2.29.0",
|
||
|
"eslint": "^6.8.0",
|
||
|
"eslint-config-prettier": "^6.11.0",
|
||
|
"jest": "^25.4.0",
|
||
|
"prettier": "^2.0.5",
|
||
|
"semantic-release": "^17.2.3",
|
||
|
"ts-jest": "^25.4.0",
|
||
|
"ts-node": "^8.9.0",
|
||
|
"typescript": "^4.3.2"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"commander": "^6.2.1",
|
||
|
"cosmiconfig": "^7.0.1",
|
||
|
"json5": "^2.1.3",
|
||
|
"lodash": "^4.17.21",
|
||
|
"true-myth": "^4.1.0",
|
||
|
"ts-morph": "^13.0.1"
|
||
|
},
|
||
|
"files": [
|
||
|
"/lib"
|
||
|
],
|
||
|
"bin": "./lib/index.js",
|
||
|
"repository": "git@github.com:nadeesha/ts-prune.git",
|
||
|
"release": {
|
||
|
"branches": [
|
||
|
"master"
|
||
|
]
|
||
|
},
|
||
|
"types": "lib/index.d.ts"
|
||
|
}
|