-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.53 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.53 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
57
58
59
60
61
62
{
"name": "codemod-cli-ts",
"version": "1.0.0",
"description": "Cli for generating codemods written in Typescript.",
"main": "index.js",
"files": [
"src"
],
"scripts": {
"build": "rm -rf dist && tsc && chmod -R 775 dist",
"watch": "tsc -w",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jmdejno/codemod-cli-ts.git"
},
"keywords": [
"codemod"
],
"bin": {
"codemod-cli-ts": "./dist/bin/cli.js"
},
"author": "Jeremy Dejno",
"license": "ISC",
"bugs": {
"url": "https://github.com/jmdejno/codemod-cli-ts/issues"
},
"homepage": "https://github.com/jmdejno/codemod-cli-ts#readme",
"dependencies": {
"chalk": "^2.4.2",
"common-tags": "^1.8.0",
"execa": "^1.0.0",
"fs-extra": "^7.0.1",
"globby": "^9.1.0",
"import-cwd": "^2.1.0",
"import-local": "^2.0.0",
"inquirer": "^6.2.2",
"inquirer-path": "^1.0.0-beta5",
"jscodeshift": "^0.6.3",
"pkg-up": "^2.0.0",
"ts-node": "^8.0.3",
"yargs": "^13.2.2"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.1",
"@babel/preset-typescript": "^7.3.3",
"@types/chalk": "^2.2.0",
"@types/execa": "^0.9.0",
"@types/fs-extra": "^5.0.5",
"@types/globby": "^9.1.0",
"@types/inquirer": "^0.0.44",
"@types/jest": "^24.0.11",
"@types/jscodeshift": "^0.6.0",
"@types/node": "^11.11.3",
"@types/yargs": "^12.0.10",
"babel-jest": "^24.5.0",
"broccoli-test-helper": "^2.0.0",
"jest": "^24.5.0"
}
}