forked from expo/expo-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1004 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
{
"name": "expo-codemod",
"version": "1.1.6",
"description": "Codemod scripts for Expo apps",
"author": "Expo",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/expo/expo-cli.git",
"directory": "packages/expo-codemod"
},
"bin": {
"expo-codemod": "./bin/expo-codemod.js"
},
"scripts": {
"watch": "tsc --watch --preserveWatchOutput",
"build": "tsc",
"prepare": "yarn run clean && yarn build",
"clean": "rimraf build ./tsconfig.tsbuildinfo",
"test": "jest",
"test:watch": "jest --watch"
},
"files": [
"bin",
"build"
],
"dependencies": {
"@expo/spawn-async": "^1.5.0",
"camelcase": "5.3.1",
"chalk": "^4.0.0",
"globby": "^11.0.0",
"jscodeshift": "0.11.0",
"multimatch": "^4.0.0",
"yargs-parser": "^13.1.0"
},
"devDependencies": {
"@types/jscodeshift": "^0.11.0",
"@types/multimatch": "^2.1.3",
"@types/yargs-parser": "^13.0.0",
"ast-types": "^0.14.2"
}
}