-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "iterable-ndjson",
"version": "1.1.0",
"description": "ndjson to async iterator",
"main": "index.js",
"browser": "browser.js",
"scripts": {
"test": "npm run test:node && npm run test:browser",
"test:node": "tape test.js",
"test:browser": "webpack --config webpack.test.config.js && cat output/test.js | tape-puppet",
"coverage": "standard && nyc --reporter=lcov --reporter=text tape test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alanshaw/iterable-ndjson.git"
},
"keywords": [
"ndjson",
"json",
"async",
"iterator",
"iterable"
],
"author": "Alan Shaw",
"license": "MIT",
"bugs": {
"url": "https://github.com/alanshaw/iterable-ndjson/issues"
},
"homepage": "https://github.com/alanshaw/iterable-ndjson#readme",
"devDependencies": {
"nyc": "^13.2.0",
"standard": "^12.0.1",
"tape": "^4.10.1",
"tape-puppet": "^0.1.7",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"string_decoder": "^1.2.0"
}
}