-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 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
{
"name": "splitly",
"description": "Split a stream on a new-line character and reassemble it into a stream of line-sized chunks. Zero dependencies with a focus on speed and simplicity.",
"version": "1.0.2",
"main": "dist/index.js",
"license": "Apache-2.0",
"devDependencies": {
"@types/chai": "^4.2.5",
"@types/mocha": "^9.0.0",
"@types/node": "^14.0.0",
"@typescript-eslint/parser": "^5.15.0",
"chai": "^4.3.0",
"eslint": "^8.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^9.2.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"files": [
"dist"
],
"scripts": {
"benchmark": "ts-node benchmark",
"test": "mocha -r ts-node/register test/*.ts",
"build": "tsc",
"prepack": "yarn build",
"lint": "eslint lib/*.ts test/*.ts"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"author": "Moritz Onken <[email protected]>",
"homepage": "https://github.com/monken/node-splitly#readme"
}