forked from expo/expo-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 876 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/plist",
"version": "0.0.20",
"description": "Mac OS X Plist parser/builder for Node.js and browsers",
"main": "build/index.js",
"scripts": {
"watch": "tsc --watch --preserveWatchOutput",
"build": "tsc",
"prepare": "yarn build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/expo/expo-cli.git",
"directory": "packages/plist"
},
"keywords": [
"plist"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/expo/expo-cli/issues"
},
"homepage": "https://github.com/expo/expo-cli/tree/main/packages/plist#readme",
"files": [
"build"
],
"dependencies": {
"@xmldom/xmldom": "~0.7.7",
"base64-js": "^1.2.3",
"xmlbuilder": "^14.0.0"
},
"devDependencies": {
"@types/base64-js": "^1.2.5"
},
"publishConfig": {
"access": "public"
}
}