-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
40 lines (40 loc) · 854 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
{
"name": "r-exec",
"main": "./lib/r-exec",
"version": "0.5.0",
"description": "Send R code to various R consoles",
"activationCommands": {
"atom-text-editor": [
"r-exec:send-command",
"r-exec:send-function",
"r-exec:send-paragraph",
"r-exec:send-knitr",
"r-exec:setwd",
"r-exec:set-chrome",
"r-exec:set-iterm",
"r-exec:set-iterm2",
"r-exec:set-rapp",
"r-exec:set-rstudio",
"r-exec:set-safari",
"r-exec:set-terminal",
"r-exec:insert-assignment",
"r-exec:insert-pipe"
]
},
"repository": "https://github.com/pimentel/atom-r-exec",
"keywords": [
"R",
"rstats",
"code",
"run",
"runner"
],
"license": "MIT",
"engines": {
"atom": ">1.0.0"
},
"dependencies": {
"node-osascript": "1.0.4",
"path": "0.12.7"
}
}