-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
24 lines (24 loc) · 848 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
{
"name": "readfilechallenge",
"version": "1.0.0",
"description": "This is an example of 3 different ways to use Node.js to process big data files. One file is the Node.js' `fs.readFile()`, another is with Node.js' `fs.createReadSteam()`, and the final is with the help of the NPM module `EventStream`.",
"main": "readFile.js",
"dependencies": {
"event-stream": "4.0.1",
"performance-now": "^2.1.0"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paigen11/file-read-challenge.git"
},
"author": "Paige Niedringhaus",
"license": "MIT",
"bugs": {
"url": "https://github.com/paigen11/file-read-challenge/issues"
},
"homepage": "https://github.com/paigen11/file-read-challenge#readme"
}