forked from expo/expo-cli
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 995 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
40
41
42
43
44
45
46
{
"name": "@expo/osascript",
"version": "2.0.8",
"description": "Tools for running an osascripts in Node",
"main": "lib/index.js",
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"prepare": "yarn run clean && yarn build",
"clean": "rm -rf build ./tsconfig.tsbuildinfo"
},
"repository": {
"type": "git",
"url": "https://github.com/expo/expo-cli.git",
"directory": "packages/osascript"
},
"keywords": [
"osascript",
"mac",
"osx",
"spawn",
"exec"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/expo/expo-cli/issues"
},
"homepage": "https://github.com/expo/expo-cli/tree/master/packages/osascript#readme",
"engines": {
"node": "8.x.x || >=10.0.0"
},
"dependencies": {
"@expo/spawn-async": "^1.5.0",
"exec-async": "^2.2.0"
},
"devDependencies": {
"@expo/babel-preset-cli": "^0.2.3"
},
"files": [
"lib/",
"src/"
],
"publishConfig": {
"access": "public"
}
}