Files
cypress/packages/rewriter/package.json
Bill Glesias eed699eb6d chore: update lerna to 8.1.8 from 6.6.2 (#30436)
* 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
2024-10-22 14:46:46 -04:00

48 lines
1.2 KiB
JSON

{
"name": "@packages/rewriter",
"version": "0.0.0-development",
"private": true,
"main": "index.js",
"scripts": {
"build-prod": "tsc --project .",
"build-test": "yarn build-prod --noEmit",
"check-ts": "tsc --noEmit",
"clean": "rimraf 'lib/**/*.js'",
"clean-deps": "rimraf node_modules",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
"test": "mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json"
},
"dependencies": {
"ast-types": "0.13.3",
"bluebird": "3.7.2",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"debug": "^4.3.4",
"lodash": "^4.17.19",
"parse5-html-rewriting-stream": "5.1.1",
"recast": "0.20.4"
},
"devDependencies": {
"@cypress/request-promise": "^5.0.0",
"@types/parse5-html-rewriting-stream": "5.1.1",
"fs-extra": "9.1.0",
"nock": "13.2.9",
"sinon": "9.0.2",
"sinon-chai": "3.5.0",
"snap-shot-it": "7.9.3"
},
"files": [
"lib"
],
"types": "./lib/index.ts",
"workspaces": {
"nohoist": [
"parse5-html-rewriting-stream",
"parse5-html-rewriting-stream/**",
"@types/parse5-html-rewriting-stream",
"@types/parse5-html-rewriting-stream/**"
]
},
"nx": {}
}