-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 801 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 801 Bytes
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
{
"name": "rereadable-stream",
"version": "1.4.14",
"description": "A simple standards-based stream that can be read again from begining.",
"main": "index.js",
"engines": {
"node": ">=8.6.0"
},
"scripts": {
"lint": "eslint index.js",
"tape": "nodeunit-tape test/object-mode.js",
"test": "npm run lint && npm run tape"
},
"author": "Scramjet <opensource@scramjet.org>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/scramjetorg/rereadable-stream.git"
},
"types": "./index.d.ts",
"devDependencies": {
"@types/node": "^18.7.8",
"eslint": "^8.22.0",
"eslint-config-scramjet": "^3.0.0",
"nodeunit-tape-compat": "^1.3.81"
},
"files": [
"index.d.ts",
"index.js",
"README.md",
"LICENSE"
]
}