This repository was archived by the owner on Jul 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.37 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.37 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"author": {
"name": "Adam Herrmann",
"email": "aherrmann@factset.com",
"url": "https://github.com/AdamHerrmann"
},
"bin": {},
"bugs": "https://github.com/factset/labeledpipe/issues",
"description": "Lazypipe with labels.",
"engines": {
"node": ">=6.9.0"
},
"files": [
"src/"
],
"homepage": "https://github.com/factset/labeledpipe#readme",
"keywords": [
"gulp",
"gulpfriendly",
"stream",
"streams",
"combine",
"lazy",
"label",
"labels",
"labeled",
"pipeline",
"pipelines"
],
"license": "Apache-2.0",
"main": "src/index.js",
"name": "labeledpipe",
"repository": {
"type": "git",
"url": "https://github.com/factset/labeledpipe.git"
},
"scripts": {
"dev": "docker run --rm --user node -v \"$(pwd)\":/app -w /app -it node:4 sh -c \"yarn install; yarn test; bash\"",
"test": "eslint src/ && nyc mocha --opts mocha.opts src/**/*.spec.js"
},
"version": "1.5.0",
"dependencies": {
"duplexer2": "0.1.4",
"shallow-copy": "0.0.1",
"through2": "^3.0.0"
},
"devDependencies": {
"@hbetts/eslint-config": "^2.0.0",
"@hbetts/nyc-config": "^1.0.13",
"chai": "^4.0.0",
"codecov": "^3.0.0",
"eslint": "^5.3.0",
"lazypipe": "^1.0.1",
"mocha": "^5.0.0",
"nyc": "^13.0.0",
"sinon": "^7.0.0",
"sinon-chai": "^3.0.0",
"through2": "^3.0.0"
}
}