@typescript-tools/lerna-packages
Version:
Discover internal packages
90 lines (89 loc) • 2.19 kB
JSON
{
"name": "@typescript-tools/lerna-packages",
"version": "3.0.1",
"description": "Discover internal packages",
"keywords": [
"lerna",
"package",
"discover",
"find"
],
"homepage": "https://github.com/typescript-tools/typescript-tools",
"bugs": {
"url": "https://github.com/typescript-tools/typescript-tools/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/typescript-tools/typescript-tools.git"
},
"license": "ISC",
"author": "Eric Crosson <eric.s.crosson@utexas.edu> (https://github.com/ericcrosson)",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src/"
],
"scripts": {
"ava": "echo 'No tests defined'",
"build": "tsc --build --incremental .",
"clean": "rimraf --no-glob dist",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "eslint --ext ts .",
"lint-staged": "lint-staged",
"lint:fix": "eslint --ext ts --fix . package.json",
"prettier": "prettier --list-different .",
"prettier:fix": "prettier --write .",
"test": "echo 'No tests defined'"
},
"pre-commit": "lint-staged",
"dependencies": {
"@typescript-tools/io-ts": "3.0.1",
"@typescript-tools/monorepo-root": "1.3.3",
"execa": "^4.1.0",
"fp-ts": "^2.11.5",
"io-ts": "~2.1.3"
},
"devDependencies": {
"@types/node": "^14.14.6",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"ava": "^3.13.0",
"ava-fast-check": "^3.0.0",
"codecov": "^3.8.1",
"eslint": "^7.32.0",
"fast-check": "^2.6.0",
"lint-staged": "^10.5.3",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"prettier": "2.2.1",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.4.4"
},
"ava": {
"extensions": [
"ts"
],
"files": [
"!dist/**/*.d.ts",
"test/**/test-*.ts"
],
"require": [
"ts-node/register"
]
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src/*.ts"
],
"require": [
"ts-node/register"
]
},
"publishConfig": {
"access": "public"
}
}