-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
35 lines (35 loc) · 955 Bytes
/
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
{
"name": "zstreams",
"version": "5.0.0",
"description": "Yet another streams library for node",
"main": "./lib/index.js",
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "[email protected]:crispy1989/node-zstreams.git"
},
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha ./test -R spec",
"lint": "node ./node_modules/jshint/bin/jshint --reporter unix --exclude ./node_modules . || exit 0",
"watch": "node ./node_modules/mocha/bin/mocha --watch ./test -R spec",
"bench": "node ./bench/index.js"
},
"dependencies": {
"crisphooks": "^2.0.1",
"es6-promise": "^4.2.8",
"extend": "^3.0.2",
"pasync": "^2.0.1",
"readable-stream": "^3.6.0"
},
"devDependencies": {
"chai": "^4.2.0",
"jshint": "^2.12.0",
"mocha": "^8.2.0",
"neo-async": "^2.6.2",
"request": "^2.88.2",
"spectrophotometer": "^3.0.2"
},
"engines": {
"node": ">= 14.0.0"
}
}