mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-08 08:10:02 -06:00
* fix sync script with updateds npm-packlist * chore: update lerna from 6.6.2 to 8.1.8 and ran lerna repair * chore: pin typescript to ~5.4.5 to avoid importsNotUsedAsValues that was removed in 5.5 and edit workflows and scripts to correctly scope learna packages on v8 snapshot tests [run ci] * fix indentation in comments * remove console.log reference to print current package directory in sync exported npm with cli script
31 lines
723 B
JSON
31 lines
723 B
JSON
{
|
|
"name": "@tooling/packherd",
|
|
"version": "0.0.0-development",
|
|
"description": "Herds all dependencies reachable from an entry and packs them.",
|
|
"private": true,
|
|
"main": "dist/packherd.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"check-ts": "tsc --noEmit",
|
|
"clean": "rimraf dist",
|
|
"clean-deps": "rimraf node_modules",
|
|
"test": "yarn test-integration",
|
|
"test-integration": "mocha --config ./test/.mocharc.js",
|
|
"watch": "tsc --watch"
|
|
},
|
|
"dependencies": {
|
|
"debug": "^4.3.4",
|
|
"esbuild": "^0.15.3"
|
|
},
|
|
"devDependencies": {
|
|
"@packages/ts": "0.0.0-development",
|
|
"mocha": "7.0.1"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src/packherd.ts"
|
|
],
|
|
"types": "src/packherd.ts",
|
|
"nx": {}
|
|
}
|