forked from expo/expo-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.4 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
49
50
51
52
53
{
"name": "@expo/prebuild-config",
"version": "3.0.18",
"description": "Get the prebuild config",
"main": "build/index.js",
"scripts": {
"watch": "tsc --watch --preserveWatchOutput",
"build": "tsc --emitDeclarationOnly && babel src --out-dir build --extensions \".ts\" --source-maps --ignore \"src/**/__mocks__/*\",\"src/**/__tests__/*\"",
"prepare": "yarn run clean && yarn build",
"clean": "rimraf build ./tsconfig.tsbuildinfo",
"lint": "eslint .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/expo/expo-cli.git",
"directory": "packages/prebuild-config"
},
"keywords": [
"json",
"react-native",
"expo",
"react"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/expo/expo-cli/issues"
},
"homepage": "https://github.com/expo/expo-cli/tree/main/packages/prebuild-config#readme",
"files": [
"build"
],
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/xml2js": "^0.4.5"
},
"dependencies": {
"@expo/config": "6.0.18",
"@expo/config-plugins": "4.0.18",
"@expo/config-types": "^44.0.0",
"@expo/image-utils": "0.3.18",
"@expo/json-file": "8.2.34",
"debug": "^4.3.1",
"expo-modules-autolinking": "~0.5.1",
"fs-extra": "^9.0.0",
"resolve-from": "^5.0.0",
"semver": "7.3.2",
"xml2js": "0.4.23"
},
"publishConfig": {
"access": "public"
}
}