forked from Planeshifter/node-Rstats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.24 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
38
39
40
{
"name": "rstats",
"version": "0.3.1",
"description": "A node.js interface for statistical programming language R",
"main": "./lib/index.js",
"scripts": {
"test": "node-gyp configure build && mocha test",
"install": "node-gyp rebuild",
"test-cov": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --dir ./reports/coverage -- -R spec",
"coveralls": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --dir ./reports/coveralls/coverage --report lcovonly -- -R spec && cat ./reports/coveralls/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./reports/coveralls"
},
"dependencies": {
"bindings": "1.2.0",
"nan": "^1.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Planeshifter/node-Rstats.git"
},
"keywords": [
"statistics",
"R",
"Rcpp"
],
"author": "Philipp Burckhardt",
"license": "GPL-2",
"gypfile": true,
"bugs": {
"url": "https://github.com/Planeshifter/node-Rstats/issues"
},
"homepage": "https://github.com/Planeshifter/node-Rstats",
"devDependencies": {
"chai": "^2.1.2",
"coveralls": "^2.11.2",
"istanbul": "^0.3.8",
"jshint": "^2.6.3",
"jshint-stylish": "^1.0.1",
"mocha": "^2.2.1"
}
}