forked from expo/expo-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 966 Bytes
/
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
{
"name": "@expo/schemer",
"version": "1.3.33",
"description": "Centralized scheme validation library for Expo",
"main": "./build/index.js",
"scripts": {
"test": "jest --testPathIgnorePatterns network",
"test-integration": "jest",
"watch": "tsc --watch --preserveWatchOutput",
"build": "tsc",
"prepare": "yarn build"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/expo/expo-cli.git",
"directory": "packages/schemer"
},
"bugs": {
"url": "https://github.com/expo/expo-cli/issues"
},
"homepage": "https://github.com/expo/expo-cli/tree/main/packages/schemer#readme",
"files": [
"build"
],
"devDependencies": {
"@types/lodash": "^4.14.176"
},
"dependencies": {
"ajv": "^5.2.2",
"json-schema-traverse": "0.3.1",
"lodash": "^4.17.19",
"probe-image-size": "~6.0.0",
"read-chunk": "^3.2.0"
},
"publishConfig": {
"access": "public"
}
}