-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 739 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 739 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
30
31
32
33
{
"name": "node-webhdfs",
"version": "1.0.2",
"description": "A WebHDFS module for Node.js.",
"author": "Ryan Cole <ryan@rycole.com> (http://rycole.com)",
"homepage": "https://github.com/ryancole/node-webhdfs",
"main": "src/webhdfs.js",
"keywords": [
"hdfs",
"webhdfs",
"http"
],
"bugs": {
"url": "mailto:ryan@rycole.com"
},
"license": "MIT",
"dependencies": {
"request": "^2.87.0",
"lodash": "^4.17.10"
},
"devDependencies": {
"mocha": "^5.2.0",
"nock": "^10.0.6",
"should": "^4.6.5"
},
"repository": {
"type": "git",
"url": "git@github.com:ryancole/node-webhdfs.git"
},
"scripts": {
"test": "mocha --reporter spec --timeout 10000 test/webhdfs.js"
}
}