changeset-releaser
Version:
Incremental builds and tests runner for monorepo projects based on Atlassian Changesets
69 lines • 1.92 kB
JSON
{
"name": "changeset-releaser",
"version": "0.1.2",
"repository": {
"type": "git",
"url": "https://github.com/harnyk/changeset-releaser",
"directory": "packages/changeset-releaser"
},
"description": "Incremental builds and tests runner for monorepo projects based on Atlassian Changesets",
"keywords": [
"monorepo",
"changesets",
"releaser",
"incremental",
"build",
"test"
],
"author": {
"name": "Mark Harnyk",
"url": "https://github.com/harnyk"
},
"main": "index.js",
"bin": {
"changeset-releaser": "lib/cli.js"
},
"files": [
"lib",
"src"
],
"scripts": {
"build": "npm run build:types && npm run build:js",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"build:types": "tsc --emitDeclarationOnly",
"changeset-build": "babel-node -x '.ts' src/build.ts",
"changeset-test": "babel-node -x '.ts' src/test.ts",
"cli": "./lib/cli.js",
"import:all": "npm run build && ./scripts/yarn-import-all.sh",
"test": "jest",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch"
},
"dependencies": {
"@types/yargs": "^17.0.1",
"chalk": "^4.1.1",
"dependency-graph": "^0.11.0",
"execa": "^5.1.1",
"globby": "^11.0.3",
"iter-tools": "^7.1.3",
"package-json-type": "^1.0.3",
"yaml": "^1.10.2",
"yargs": "^17.0.1"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"@babel/node": "^7.13.13",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^27.0.2",
"@types/node": "^14.14.41",
"@types/uuid": "^8.3.1",
"jest": "^27.3.1",
"recursive-copy": "^2.0.13",
"typescript": "^4.2.4",
"uuid": "^8.3.2",
"yaml-template": "^1.0.0"
}
}