-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 880 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
{
"name": "concise-object-stream",
"version": "1.3.2",
"description": "More concise node object streams",
"main": "lib/index.js",
"scripts": {
"lint": "eslint 'lib/**' 'test/**'",
"test": "nyc --check-coverage mocha ./test",
"watch": "chokidar 'lib/*.js' 'test/*.js' -c 'npm run lint && npm test'",
"ci": "npm run lint && npm test",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"streams"
],
"author": "toboid",
"license": "MIT",
"respository": "toboid/concise-object-stream",
"devDependencies": {
"chai": "^4.2.0",
"chokidar-cli": "^2.0.0",
"concat-stream": "^2.0.0",
"coveralls": "^3.0.3",
"eslint": "^6.6.0",
"eslint-config-toboid": "2.0.0",
"lodash": "^4.17.15",
"mocha": "^6.2.2",
"nyc": "^15.0.0"
},
"dependencies": {
"readable-stream": "^3.3.0"
}
}