-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 971 Bytes
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 971 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "bash-converter",
"version": "2.6.0",
"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": "daniel-schreiber@gmx.de",
"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": "~27.4.1",
"@types/node": "~12.7.12",
"jest": "~27.5.1",
"ts-jest": "~27.1.4",
"ts-node": "~10.0.0",
"typescript": "~4.3.2"
},
"files": [
"lib/**/*"
]
}