mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-24 07:59:03 -06:00
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Stokes Player <stokes.player@gmail.com>
32 lines
824 B
JSON
32 lines
824 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",
|
|
"build-prod": "yarn build",
|
|
"check-ts": "tsc --noEmit && yarn -s tslint",
|
|
"clean-deps": "rimraf node_modules",
|
|
"clean": "rimraf dist",
|
|
"test": "yarn test-integration",
|
|
"test-integration": "mocha --config ./test/.mocharc.js",
|
|
"tslint": "tslint --config ../ts/tslint.json --project .",
|
|
"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"
|
|
}
|