Files
DefinitelyTyped-tools/package.json
Nathan Shively-Sanders 0c9257237f Allow passthrough anywhere. (#226)
Turns out that passthroughs need to be allowed anywhere.

Since you can only add passthroughs to `./node_modules`, you can only
add passthroughs to things in package.json, which means that that file
remains the security bottleneck.
2021-03-29 10:48:46 -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": "^25.1.3",
"@types/node": "^14.14.37",
"@types/yargs": "^15.0.4",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.14.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.8",
"jest": "^25.1.0",
"lerna": "^3.20.2",
"prettier": "^1.19.1",
"ts-jest": "^25.2.1",
"tslint": "^6.1.2",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^4.1.0"
}
}