UNPKG

1.07 kBJSONView Raw
1{
2 "name": "pod-install",
3 "version": "0.0.0-alpha.7",
4 "main": "build",
5 "keywords": [
6 "cocoapods",
7 "pod-install",
8 "npx",
9 "ios"
10 ],
11 "description": "Ensure CocoaPods are installed in your project",
12 "repository": {
13 "type": "git",
14 "url": "https://github.com/expo/pod-install.git"
15 },
16 "author": "Expo <support@expo.io>",
17 "license": "MIT",
18 "bin": {
19 "pod-install": "./build/index.js"
20 },
21 "files": [
22 "build"
23 ],
24 "scripts": {
25 "prepare": "yarn run clean && yarn run build:prod",
26 "lint": "eslint .",
27 "watch": "tsc --watch",
28 "watch:ncc": "yarn run build -w",
29 "build": "ncc build ./src/index.ts -o build/",
30 "build:prod": "ncc build ./src/index.ts -o build/ --minify --no-cache --no-source-map-register",
31 "clean": "rimraf ./build/"
32 },
33 "devDependencies": {
34 "@expo/babel-preset-cli": "0.2.8",
35 "@expo/package-manager": "0.0.13",
36 "@types/node": "^12.12.31",
37 "@zeit/ncc": "^0.20.5",
38 "chalk": "2.4.2",
39 "commander": "2.20.0",
40 "rimraf": "^3.0.2",
41 "update-check": "1.5.3"
42 }
43}