forked from AlonMiz/ndjson-parse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 816 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
{
"name": "ndjson-parse",
"author": "Alon Mizrahi",
"keywords": [
"ndjson",
"parse",
"javascript"
],
"version": "1.0.2",
"repository": {
"type": "git",
"url": "https://github.com/AlonMiz/ndjson-parse.git"
},
"contributors": [
{
"email": "alonmizra@gmail.com",
"name": "Alon Mizrahi",
"url": "https://github.com/AlonMiz"
}
],
"description": "parse Newline delimited JSON as array of json",
"main": "index.js",
"scripts": {
"watch": "jest --watch",
"test": "jest --coverage --ci"
},
"license": "ISC",
"devDependencies": {
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^23.6.0",
"nyc": "^13.1.0"
}
}