forked from expo/expo-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "pod-install",
"version": "0.1.32",
"main": "build",
"keywords": [
"cocoapods",
"pod-install",
"npx",
"ios"
],
"description": "Ensure CocoaPods are installed in your project",
"repository": {
"type": "git",
"url": "https://github.com/expo/expo-cli.git"
},
"homepage": "https://github.com/expo/expo-cli/tree/main/packages/pod-install",
"author": "Expo <[email protected]>",
"license": "MIT",
"bin": {
"pod-install": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"prepare": "yarn run clean && yarn run build:prod",
"lint": "eslint .",
"watch": "tsc --watch --preserveWatchOutput",
"watch:ncc": "yarn run build -w",
"build": "ncc build ./src/index.ts -o build/",
"build:prod": "ncc build ./src/index.ts -o build/ --minify --no-cache --no-source-map-register",
"clean": "rimraf ./build/"
},
"devDependencies": {
"@expo/package-manager": "0.0.50",
"chalk": "^4.0.0",
"commander": "2.20.0",
"update-check": "1.5.3"
}
}