forked from albertosantini/node-opencpu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 693 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 693 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
{
"name": "opencpu",
"description": "OpenCPU client",
"version": "1.0.0",
"main": "index",
"repository": "http://github.com/albertosantini/node-opencpu",
"keywords": [
"OpenCPU",
"R framework"
],
"author": "Alberto Santini",
"license": "MIT",
"engines": {
"node": ">=0.12.x"
},
"dependencies": {
"request": "~2.72.0"
},
"scripts": {
"test": "npm run lint && npm run tape",
"lint": "eslint lib/**/*.js test/**/*.js",
"tape": "tape test/*-test.js"
},
"devDependencies": {
"eslint": "^2.8.0",
"eslint-config-eslint": "~3.0.0",
"tape": "~4.5.1"
}
}