-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.33 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.33 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
61
62
63
{
"name": "through3",
"description": "Extend stream classes.",
"version": "1.1.7",
"author": "muji <noop@xpm.io>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/tmpfs/through3.git"
},
"main": "index.js",
"engine": [
"node >= 0.12.2"
],
"keywords": [
"stream",
"transform",
"duplex",
"readable",
"writable",
"passthrough"
],
"devDependencies": {
"chai": "~2.2.0",
"coveralls": "~2.11.6",
"istanbul": "~0.3.13",
"mocha": "~2.2.4"
},
"scripts": {
"lint": "jshint . && jscs .",
"docs": "npm run readme",
"readme": "mdp --force -v",
"test": "NODE_ENV=test mocha test/spec",
"cover": "NODE_ENV=test istanbul cover -i index.js _mocha -- test/spec",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"mdp": {
"title": "Through",
"pedantic": true,
"include": "doc/readme",
"require": "lib",
"links": "links.md",
"toc": "Table of Contents",
"base": "https://github.com/tmpfs/through3",
"partial": [
{
"inc": [
"introduction.md",
"install.md"
]
},
{
"bin": "mdapi index.js --level=2 --title=API"
},
{
"inc": [
"developer.md",
"license.md"
]
}
]
}
}