forked from FWeinb/node-osascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 727 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 727 Bytes
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
{
"name": "node-osascript",
"version": "3.0.0",
"description": "Execute AppleScript from Node",
"main": "./lib/index.js",
"scripts": {
"testall": "npm run build && nodeunit tests/**",
"test": "npm run build && nodeunit tests/independent",
"build": "pegjs ./lib/osa-parser.peg"
},
"keywords": [
"apple",
"script",
"applescript",
"osascript"
],
"author": "Fabrice Weinberg <Fabrice@weinberg.me>",
"contributors": [ "Robert Holwerda <rbrt@rbrt.net>" ],
"repository": "https://github.com/FWeinb/node-osascript",
"license": "MIT",
"devDependencies": {
"nodeunit": "^0.11.0",
"pegjs": "^0.10.0",
"xo": "^0.17.1"
},
"dependencies": {
"buffers": "^0.1.1"
}
}