-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.22 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "ndjson-apply",
"version": "1.4.1",
"type": "module",
"description": "A CLI tool to transform a stream of newline-delimited JSON by applying a JS function to each JSON object",
"main": "bin/ndjson-apply.js",
"bin": {
"ndjson-apply": "bin/ndjson-apply.js",
"ndjson-apply-ts": "bin/ndjson-apply-ts.sh"
},
"files": [
"bin",
"lib"
],
"scripts": {
"test": "mocha $MOCHA_OPTIONS ./tests/*.js",
"prepublish": "npm test",
"update-toc": "./scripts/update_toc.sh"
},
"keywords": [
"ndjson",
"jsonl",
"ldjson",
"apply",
"map",
"transform",
"function",
"diff",
"CLI"
],
"author": "maxlath",
"license": "MIT",
"dependencies": {
"commander": "^7.2.0",
"diff": "^4.0.2",
"split": "^1.0.1",
"through": "^2.3.8",
"tiny-chalk": "^3.0.1"
},
"devDependencies": {
"mocha": "^9.1.3",
"should": "^13.2.3",
"tsx": "^4.7.1"
},
"directories": {
"lib": "lib",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxlath/ndjson-apply.git"
},
"bugs": {
"url": "https://github.com/maxlath/ndjson-apply/issues"
},
"homepage": "https://github.com/maxlath/ndjson-apply#readme"
}