-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
37 lines (37 loc) · 1.08 KB
/
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
{
"name": "rserve-client",
"version": "0.3.5",
"description": "A stateful client for Rserve, the TCP/IP server for R framework.",
"license": "MIT",
"keywords": [
"rserve",
"client",
"r"
],
"author": "Vytautas Jakutis <vytautas@jakut.is> (https://jakut.is/)",
"repository": {
"type": "git",
"url": "https://github.com/jakutis/rserve-client"
},
"scripts": {
"start-rserve": "nohup bash -c \"echo -e 'library(Rserve);\\nRserve(args=\\\"--RS-pidfile $(pwd)/rs.pid --vanilla\\\")\\n' | R --vanilla\" 1>/dev/null 2>&1 &",
"test": "npm run start-rserve && jshint --config ./jshint.json ./lib/rserve.js ./lib/helpers.js && mocha && kill $(cat rs.pid)"
},
"homepage": "https://www.npmjs.org/package/rserve-client",
"bugs": "https://github.com/jakutis/rserve-client/issues",
"main": "./lib/rserve.js",
"dependencies": {
"binary": "0.3.x",
"buffers": "0.1.x",
"jspack": "0.0.x"
},
"devDependencies": {
"bluebird": "3.5.2",
"jshint": "2.9.6",
"mocha": "3.5.3"
},
"engine": {
"node": ">=0.10",
"iojs": ">=1.0.4"
}
}