-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.03 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.03 KB
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
43
44
{
"name": "streaming-object-transform",
"description": "Apply a series of promise-returning transform functions on an object stream",
"version": "1.1.0",
"author": "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",
"license": "MIT",
"repository": "stream-utils/streaming-object-transform",
"dependencies": {
"destroy": "^1.0.3",
"waterfall-then": "^2.0.2"
},
"devDependencies": {
"babel-eslint": "4",
"codecov": "1",
"eslint": "1",
"eslint-config-jongleberry": "^1.0.3",
"eslint-config-standard": "4",
"eslint-plugin-react": "^3.13.1",
"eslint-plugin-standard": "1",
"ghooks": "1",
"mocha": "2",
"nyc": "5"
},
"scripts": {
"lint": "eslint --cache lib test",
"test": "mocha",
"test-cov": "nyc node_modules/mocha/bin/_mocha && nyc report --reporter=lcov"
},
"config": {
"ghooks": {
"pre-push": "npm run lint"
}
},
"keywords": [
"object",
"stream",
"transform",
"through"
],
"files": [
"lib"
],
"main": "lib"
}