-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.07 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
42
{
"name": "sync-readable",
"version": "0.0.2",
"description": "Synchronize a function that returns a Node.js readable stream.",
"keywords": [
"readable",
"readablestream",
"readable-stream",
"stream",
"streams",
"sync",
"synchronize"
],
"license": "ISC",
"author": "Francesco Trotta <[email protected]> (https://github.com/fasttime)",
"files": [
"index.*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/origin-1/sync-readable.git"
},
"scripts": {
"build": "npm install && npm run build-no-install",
"build-no-install": "npm run clean && npm run lint && npm run coverage",
"clean": "node dev/clean.mjs",
"coverage": "node dev/coverage.mjs",
"lint": "eslint .",
"release": "git add CHANGELOG.md && npm version -f -m \"release %s\"",
"test": "mocha --check-leaks test.js"
},
"devDependencies": {
"@origin-1/eslint-config": "latest",
"c8js": "latest",
"es6-promise": "latest",
"eslint": "latest",
"mocha": "3"
},
"dependencies": {
"@types/node": "*"
}
}