forked from joshkatz/r-script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 958 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
{
"name": "@maki-people/r-script",
"version": "1.0.7",
"description": "A simple little module for passing data from NodeJS to R (and back again).",
"keywords": [
"R",
"rstats",
"statistics"
],
"homepage": "http://github.com/Maki-People/r-script",
"bugs": "http://github.com/Maki-People/r-script/issues",
"license": "MIT",
"author": {
"name": "Josh Katz"
},
"maintainers": [
"Jerome Duval"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "Maki-People/r-script",
"devDependencies": {
"@types/jest": "~29.0.0",
"@types/node": "~18.7.14",
"jest": "~29.0.1",
"queue-async": "^1.0.7",
"ts-jest": "~29.0.0-next.0",
"ts-node": "~10.9.1",
"typescript": "~4.8.2"
},
"scripts": {
"build": "npm run clean && npx tsc && npm run copy-R-files",
"clean": "rm -rf ./dist",
"copy-R-files": "mkdir ./dist/R && cp ./src/R/* ./dist/R/",
"test": "jest"
}
}