-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.28 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": "jsonlash",
"description": "CLI utility for filtering and aggregation of JSONL streams.",
"version": "0.0.10",
"author": "Marek Trunkat @mtrunkat",
"bin": {
"jsonlash": "./bin/run"
},
"bugs": "https://github.com/mtrunkat/jsonlash/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"bluebird": "^3.5.1",
"cli-table": "^0.3.1",
"underscore": "^1.8.3"
},
"devDependencies": {
"@oclif/test": "^1",
"chai": "^4",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.4.0",
"mocha": "^5",
"nyc": "^12",
"sinon": "^4.1.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/src"
],
"homepage": "https://github.com/mtrunkat/jsonlash",
"keywords": [
"cli",
"jsonl",
"stream",
"etl",
"aggregation"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"bin": "jsonlash"
},
"repository": "mtrunkat/jsonlash",
"scripts": {
"posttest": "eslint .",
"test": "nyc mocha --forbid-only \"test/**/*.test.js\""
}
}