-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.01 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
41
42
43
44
45
46
{
"name": "file-line-scanner",
"version": "1.0.3",
"description": "API for reading contents of a file line by line.",
"main": "build/index.js",
"repository": {
"url": "https://github.com/tVienonen/file-line-reader"
},
"files": [
"build/**/*.js",
"build/**/*.d.ts",
"build/**/*.map"
],
"scripts": {
"test": "mocha -r ts-node/register test/*/**.ts",
"test:acceptance": "mocha -r ts-node/register test/acceptance/*.ts",
"prepack": "npm run build",
"build": "tsc"
},
"keywords": [
"file",
"read",
"contents",
"line",
"reader",
"stream",
"streaming"
],
"author": "Topi Vienonen",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"@types/sinon": "^9.0.10",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"sinon": "^9.2.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@types/through2": "^2.0.36",
"through2": "^4.0.2"
}
}