-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 787 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 787 Bytes
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
{
"name": "convert-js-to-ts",
"version": "1.3.2",
"description": "Convert JavaScript Project to TypeScript",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"bin": {
"convert-js-to-ts": "build/src/cli.js"
},
"scripts": {
"compile": "rm -rf build && tsc",
"prepublish": "npm run compile && sed -i '1s/^/#!\\/usr\\/bin\\/env node \\n /' build/src/cli.js"
},
"keywords": [],
"author": "HardCoreQual",
"repository": {
"type": "git",
"url": "https://github.com/HardCoreQual/convert-js-to-ts"
},
"license": "MIT",
"dependencies": {
"commander": "^9.4.0",
"typescript": "^4.7.4"
},
"devDependencies": {
"@types/jest": "^28.1.7",
"@types/node": "^18.7.3",
"jest": "^28.1.3",
"ts-jest": "^28.0.8"
}
}