forked from expo/expo-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 KB
/
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
43
44
45
46
47
48
{
"name": "expo-codemod",
"version": "1.0.12",
"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",
"build": "tsc",
"prepare": "yarn run clean && yarn build",
"clean": "rm -rf build ./tsconfig.tsbuildinfo",
"test": "jest",
"test:watch": "jest --watch"
},
"files": [
"bin",
"build"
],
"jest": {
"rootDir": "src",
"testEnvironment": "node"
},
"dependencies": {
"@expo/spawn-async": "^1.5.0",
"camelcase": "5.3.1",
"globby": "^9.2.0",
"jscodeshift": "0.6.4",
"multimatch": "^4.0.0",
"semver": "^6.0.0",
"yargs-parser": "^13.1.0"
},
"devDependencies": {
"@expo/babel-preset-cli": "^0.2.5",
"@types/globby": "^9.1.0",
"@types/jscodeshift": "^0.6.0",
"@types/multimatch": "^2.1.3",
"@types/yargs-parser": "^13.0.0",
"jest": "^24.8.0"
}
}