-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.33 KB
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
47
48
49
50
51
52
53
54
55
56
{
"name": "bashcodeshift",
"version": "0.1.0",
"description": "A jscodeshift-like toolkit for bash script transformations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"bashcodeshift": "dist/bin/bashcodeshift.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"docs": "typedoc src/index.ts",
"start": "node dist/bin/bashcodeshift.js",
"clean": "rimraf dist",
"prebuild": "npm run clean"
},
"keywords": [
"bash",
"codemod",
"transform",
"ast",
"shell",
"script",
"codeshift"
],
"author": "David Coleman <[email protected]>",
"license": "MIT",
"dependencies": {
"commander": "^11.0.0",
"glob": "^10.3.0",
"chalk": "^5.2.0",
"@isdk/bash-parser": "^1.0.0",
"fs-extra": "^11.1.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/fs-extra": "^11.0.0",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.42.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0",
"typedoc": "^0.25.0",
"rimraf": "^5.0.0"
},
"engines": {
"node": ">=16.0.0"
}
}