-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 992 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
38
{
"name": "array-stringify-stream",
"version": "1.0.0",
"description": "A utility for stringifying large JSON object arrays using node streams.",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "tap --ts --coverage-report=lcov --coverage-report=text --no-browser index.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bienzaaron/array-stringify-stream.git"
},
"keywords": [
"stream",
"json",
"array",
"object"
],
"author": "AJ Bienz <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bienzaaron/array-stringify-stream/issues"
},
"homepage": "https://github.com/bienzaaron/array-stringify-stream#readme",
"devDependencies": {
"@types/node": "^16.11.26",
"@types/tap": "^15.0.6",
"stream-collect": "^2.2.0",
"tap": "^16.0.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}