forked from expo/expo-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.07 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": "@expo/android-manifest",
"version": "0.2.5",
"description": "A library for interacting with the app.json",
"main": "build/Manifest.js",
"types": "build/Manifest.d.ts",
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"prepare": "yarn run clean && yarn build",
"clean": "rm -rf build ./tsconfig.tsbuildinfo",
"lint": "eslint .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/expo/expo-cli.git",
"directory": "packages/android-manifest"
},
"keywords": [
"json",
"react-native",
"expo",
"android-manifest",
"android",
"react"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/expo/expo-cli/issues"
},
"homepage": "https://github.com/expo/expo-cli/tree/master/packages/android-manifest#readme",
"files": [
"build"
],
"dependencies": {
"fs-extra": "^7.0.1",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@expo/babel-preset-cli": "^0.2.5",
"@types/xml2js": "^0.4.5"
},
"publishConfig": {
"access": "public"
}
}