Files
codeql-action/node_modules/run-applescript/package.json
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
792 B
JSON
Raw Normal View History

2020-05-04 18:50:13 +01:00
{
2023-07-13 09:09:17 +00:00
"name": "run-applescript",
2021-10-21 15:24:20 -07:00
"version": "5.0.0",
2023-07-13 09:09:17 +00:00
"description": "Run AppleScript and get the result",
2020-05-04 18:50:13 +01:00
"license": "MIT",
2023-07-13 09:09:17 +00:00
"repository": "sindresorhus/run-applescript",
2021-10-21 15:24:20 -07:00
"funding": "https://github.com/sponsors/sindresorhus",
2020-05-04 18:50:13 +01:00
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
2021-10-21 15:24:20 -07:00
"url": "https://sindresorhus.com"
2020-05-04 18:50:13 +01:00
},
2022-02-01 18:01:11 +00:00
"type": "module",
"exports": "./index.js",
2020-05-04 18:50:13 +01:00
"engines": {
2022-02-01 18:01:11 +00:00
"node": ">=12"
2020-05-04 18:50:13 +01:00
},
"scripts": {
2021-10-21 15:24:20 -07:00
"test": "xo && ava && tsd"
2020-05-04 18:50:13 +01:00
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
2023-07-13 09:09:17 +00:00
"macos",
"mac",
"applescript",
"osascript",
"run",
"execute"
2020-05-04 18:50:13 +01:00
],
2023-07-13 09:09:17 +00:00
"dependencies": {
"execa": "^5.0.0"
},
2020-05-04 18:50:13 +01:00
"devDependencies": {
2022-02-01 18:01:11 +00:00
"ava": "^3.15.0",
"tsd": "^0.14.0",
"xo": "^0.38.2"
2020-05-04 18:50:13 +01:00
}
2022-02-24 17:03:29 +00:00
}