forked from daniel-sc/bash-shell-to-bat-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 972 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
40
41
42
43
44
45
46
{
"name": "bash-converter",
"version": "2.2.1",
"description": "converting simple bash/shell scripts to windows batch files",
"main": "lib/cli.js",
"bin": {
"bash-converter": "lib/cli.js"
},
"scripts": {
"test": "jest",
"test-coverage": "jest --coverage",
"tsc": "tsc",
"build": "tsc"
},
"keywords": [
"bash",
"shell",
"batch",
"converter"
],
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/daniel-sc/bash-shell-to-bat-converter.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"bash-parser": "~0.5.0",
"tslib": "^2.0.0"
},
"devDependencies": {
"@types/jest": "~26.0.23",
"@types/node": "~12.7.12",
"jest": "~27.0.4",
"ts-jest": "~27.0.2",
"ts-node": "~10.0.0",
"typescript": "~4.3.2"
},
"files": [
"lib/**/*"
]
}