-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 968 Bytes
/
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
39
{
"name": "ts-remove-any",
"version": "0.2.5",
"description": "",
"main": "dist/index.js",
"bin": "bin/ts-remove-any",
"scripts": {
"build": "./node_modules/.bin/rimraf dist && tsc",
"lint": "eslint './src/**/*.ts'",
"prepare": "npm run build",
"release": "npx standard-version && git push --follow-tags origin main",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"author": "Benoit Lemoine",
"license": "MIT",
"devDependencies": {
"@types/jest": "29.5.0",
"@typescript-eslint/eslint-plugin": "5.57.1",
"@typescript-eslint/parser": "5.57.1",
"eslint": "8.38.0",
"jest": "29.5.0",
"prettier": "2.8.7",
"rimraf": "4.4.1",
"ts-jest": "29.1.0"
},
"dependencies": {
"commander": "10.0.0",
"ts-morph": "18.0.0",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18.3"
},
"repository": {
"type": "git",
"url": "https://github.com/blemoine/ts-remove-any.git"
}
}