forked from expo/expo-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.19 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
{
"name": "@expo/image-utils",
"version": "0.3.17",
"description": "A package used by Expo CLI for processing images",
"main": "build/index.js",
"scripts": {
"watch": "tsc --watch --preserveWatchOutput",
"build": "tsc",
"test": "jest",
"prepare": "yarn run clean && yarn build",
"clean": "rimraf build ./tsconfig.tsbuildinfo"
},
"repository": {
"type": "git",
"url": "https://github.com/expo/expo-cli.git",
"directory": "packages/image-utils"
},
"keywords": [
"json"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/expo/expo-cli/issues"
},
"homepage": "https://github.com/expo/expo-cli/tree/master/packages/image-utils#readme",
"files": [
"build"
],
"dependencies": {
"@expo/spawn-async": "1.5.0",
"chalk": "^4.0.0",
"fs-extra": "9.0.0",
"getenv": "^1.0.0",
"jimp-compact": "0.16.1",
"mime": "^2.4.4",
"node-fetch": "^2.6.0",
"parse-png": "^2.1.0",
"resolve-from": "^5.0.0",
"semver": "7.3.2",
"tempy": "0.3.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.1",
"@types/getenv": "^0.7.0",
"@types/semver": "^6.0.0"
},
"publishConfig": {
"access": "public"
}
}