forked from kylebarron/stata-exec
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·42 lines (42 loc) · 968 Bytes
/
package.json
File metadata and controls
executable file
·42 lines (42 loc) · 968 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
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "stata-exec",
"main": "./lib/main.js",
"version": "1.8.6",
"description": "Send code to Stata from Atom",
"activationCommands": {
"atom-text-editor": [
"stata-exec:run",
"stata-exec:run-all",
"stata-exec:run-and-move-down",
"stata-exec:run-batch",
"stata-exec:run-paragraph",
"stata-exec:run-previous-command",
"stata-exec:run-program",
"stata-exec:set-working-directory"
]
},
"repository": "https://github.com/kylebarron/stata-exec",
"bugs": {
"url": "https://github.com/kylebarron/stata-exec/issues"
},
"keywords": [
"Stata"
],
"license": "MIT",
"engines": {
"atom": ">1.0.0"
},
"package-deps": [
"language-stata"
],
"optionalDependencies": {
"winax": "1.0.13"
},
"dependencies": {
"atom-package-deps": "4.6.0",
"delay": "^2.0.0",
"escape-string-applescript": "^2.0.0",
"path": "0.12.7",
"run-applescript": "^3.2.0"
}
}