forked from expo/expo-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.1 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
{
"name": "uri-scheme",
"version": "1.1.0",
"main": "build",
"preferGlobal": true,
"keywords": [
"expo",
"ios",
"uri-scheme",
"android"
],
"description": "Interact with native URI schemes",
"repository": {
"type": "git",
"url": "https://github.com/expo/expo-cli.git",
"directory": "packages/uri-scheme"
},
"author": "Expo <[email protected]>",
"license": "MIT",
"bin": {
"uri-scheme": "./cli.js"
},
"files": [
"build",
"cli.js"
],
"scripts": {
"prepare": "yarn run clean && yarn run build:prod",
"lint": "eslint .",
"watch": "yarn run build -w",
"test": "jest",
"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/config-plugins": "4.1.5",
"@expo/plist": "0.0.20",
"@expo/spawn-async": "1.5.0",
"@types/prompts": "^2.0.6",
"chalk": "^4.0.0",
"commander": "2.20.0",
"glob": "7.1.6",
"prompts": "^2.3.2",
"update-check": "1.5.3"
}
}