Files
DefinitelyTyped-tools/package.json
Nathan Shively-Sanders eba074f006 Port no import default of export equals (#657)
* Port no-import-default-of-export-equals

First draft and 2/3 of the original tests. The test of modules, the one
that matters, doesn't work with typescript-eslint's test infrastructure
though.

* Port no-import-default-of-export-equals

Also update TS to 5.0 and Jest to 29.

Associated minor changes to jest config (no more top-level ts-node) and
some tslint rules (switch to a combined decorator/modifier list, but
only on select nodes).

* yarn format

* Fix lint and update new jest baseline format

More like real JSON!

* also update dts-critic (??)
2023-03-27 10:00:11 -07:00

34 lines
878 B
JSON

{
"name": "definitelytyped-tools",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "lerna bootstrap --no-ci",
"pretest": "yarn build",
"lint": "eslint . --ext .ts",
"format": "prettier --write 'packages/**/*.ts'",
"test": "jest",
"build": "tsc -b .",
"retag": "node packages/retag/dist/retag.js"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^14.14.37",
"@types/yargs": "^15.0.4",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^7.31.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.8",
"jest": "^29.5.0",
"lerna": "^4.0.0",
"prettier": "^2.6.2",
"ts-jest": "^29.0.5",
"tslint": "^6.1.2",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^5.0.2"
}
}