forked from expo/expo-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.31 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-optimize",
"version": "0.1.1",
"main": "build",
"preferGlobal": true,
"keywords": [
"expo",
"sharp",
"optimize",
"react-native",
"react-native-web"
],
"description": "Compress the assets in your project",
"repository": {
"type": "git",
"url": "https://github.com/expo/expo-cli.git",
"directory": "packages/expo-optimize"
},
"author": "Expo <[email protected]>",
"license": "MIT",
"bin": {
"expo-optimize": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"prepare": "yarn run clean && yarn run build:prod",
"lint": "eslint .",
"watch": "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/babel-preset-cli": "^0.2.5",
"@expo/config": "2.6.1",
"@expo/image-utils": "^0.2.12",
"@expo/json-file": "^8.2.5",
"@types/node": "^12.6.8",
"@zeit/ncc": "^0.20.5",
"chalk": "2.4.2",
"commander": "2.20.0",
"cpy": "7.3.0",
"cross-spawn": "6.0.5",
"glob": "7.1.2",
"pretty-bytes": "5.2.0",
"rimraf": "2.6.3",
"tempy": "0.3.0",
"update-check": "1.5.3",
"validate-npm-package-name": "3.0.0"
}
}