-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·42 lines (42 loc) · 1.04 KB
/
package.json
File metadata and controls
executable file
·42 lines (42 loc) · 1.04 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
{
"name": "import-move-codemod",
"version": "0.0.3",
"description": "This babel plugin should be used as codemod for bulk import refactorings a.k.a module move refactorings",
"repository": "https://github.com/RIP21/import-move-codemod",
"license": "MIT",
"author": "https://github.com/RIP21/",
"main": "cjs/src/index.js",
"keywords": [
"babel-plugin",
"babel-codemod",
"codemod",
"import",
"rename",
"move",
"typescript",
"javascript",
"refactoring"
],
"devDependencies": {
"@types/babel__core": "^7.1.9",
"@types/prettier": "^2.0.2",
"babel-plugin-tester": "8.0.1",
"jest": "^26.1.0",
"np": "^6.3.2",
"prettier": "^2.0.5",
"ts-jest": "^26.1.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
},
"scripts": {
"test": "jest",
"start": "ts-node manualRun.ts",
"tsc": "tsc",
"release": "tsc && np"
},
"dependencies": {
"@babel/core": "^7.10.5",
"@babel/helper-plugin-utils": "^7.10.4",
"@babel/plugin-syntax-typescript": "^7.10.4"
}
}