forked from microsoft/DefinitelyTyped-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "definitelytyped-tools",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint": "eslint . --report-unused-disable-directives --ext .ts",
"format": "prettier --write 'packages/**/*.ts'",
"test": "jest",
"build": "tsc -b .",
"retag": "node packages/retag/dist/index.js",
"ci:publish": "pnpm changeset tag && pnpm publish -r"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@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.27.5",
"eslint-plugin-jsdoc": "^30.7.8",
"jest": "^29.5.0",
"prettier": "^2.6.2",
"ts-jest": "^29.0.5",
"tslint": "^6.1.2",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^5.2.2"
},
"pnpm": {
"overrides": {
"tough-cookie@<4.1.3": ">=4.1.3",
"semver@<5.7.2": ">=5.7.2",
"semver@>=6.0.0 <6.3.1": ">=6.3.1"
}
},
"packageManager": "pnpm@8.7.5"
}