mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-29 03:09:53 -05:00
24f1460692
* Revert "chore: remove Typescript dependency from app node_modules in binary (#27577)" This reverts commit60d4c8356c. * Revert "chore: simplify build script (#27547)" This reverts commit0a86ec686e. * Revert "chore: upgrade lerna to 6, cache build step (#26913)" This reverts commit9e60aeba8f. * build everything * [run ci]
34 lines
881 B
JSON
34 lines
881 B
JSON
{
|
|
"name": "@packages/packherd-require",
|
|
"version": "0.0.0-development",
|
|
"description": "Loads modules that have been bundled by `@tooling/packherd`.",
|
|
"private": true,
|
|
"main": "dist/require.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-unit",
|
|
"test-unit": "mocha --config ./test/.mocharc.js",
|
|
"tslint": "tslint --config ../ts/tslint.json --project .",
|
|
"watch": "tsc --watch"
|
|
},
|
|
"dependencies": {
|
|
"convert-source-map": "^1.7.0",
|
|
"debug": "^4.3.4",
|
|
"source-map-js": "^0.6.2"
|
|
},
|
|
"devDependencies": {
|
|
"@packages/ts": "0.0.0-development",
|
|
"esbuild": "^0.15.3",
|
|
"mocha": "7.0.1"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src/require.ts"
|
|
],
|
|
"types": "src/require.ts"
|
|
}
|