chenyc
2025-12-09 65e034683b28d799e73c7d7e5e4769fab5b9bc9c
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
{
  "name": "split2",
  "version": "4.2.0",
  "description": "split a Text Stream into a Line Stream, using Stream 3",
  "main": "index.js",
  "scripts": {
    "lint": "standard --verbose",
    "unit": "nyc --lines 100 --branches 100 --functions 100 --check-coverage --reporter=text tape test.js",
    "coverage": "nyc --reporter=html --reporter=cobertura --reporter=text tape test/test.js",
    "test:report": "npm run lint && npm run unit:report",
    "test": "npm run lint && npm run unit",
    "legacy": "tape test.js"
  },
  "pre-commit": [
    "test"
  ],
  "website": "https://github.com/mcollina/split2",
  "repository": {
    "type": "git",
    "url": "https://github.com/mcollina/split2.git"
  },
  "bugs": {
    "url": "http://github.com/mcollina/split2/issues"
  },
  "engines": {
    "node": ">= 10.x"
  },
  "author": "Matteo Collina <hello@matteocollina.com>",
  "license": "ISC",
  "devDependencies": {
    "binary-split": "^1.0.3",
    "callback-stream": "^1.1.0",
    "fastbench": "^1.0.0",
    "nyc": "^15.0.1",
    "pre-commit": "^1.1.2",
    "standard": "^17.0.0",
    "tape": "^5.0.0"
  }
}