-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.29 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.29 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
{
"name": "stream-lines",
"description": "Line transform stream, reads bytes writes arrays of lines.",
"version": "1.2.1",
"author": "muji <noop@xpm.io>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/tmpfs/stream-lines.git"
},
"main": "index.js",
"dependencies": {
"through3": "~1.1.1"
},
"devDependencies": {
"chai": "~3.4.1",
"coveralls": "~2.11.6",
"istanbul": "~0.4.1",
"mocha": "~2.3.4"
},
"engine": [
"node >= 0.10.11"
],
"keywords": [
"stream",
"lines",
"parse",
"read"
],
"scripts": {
"lint": "jshint . && jscs .",
"docs": "npm run readme",
"readme": "mdp --force -v",
"test": "NODE_ENV=test mocha -- ${SPEC:-test/spec}",
"cover": "NODE_ENV=test istanbul cover _mocha -- ${SPEC:-test/spec}",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"mdp": {
"title": "Stream Lines",
"pedantic": true,
"include": "doc/readme",
"require": "lib",
"links": "links.md",
"toc": "Table of Contents",
"base": "https://github.com/tmpfs/stream-lines",
"partial": [
{
"inc": [
"introduction.md",
"install.md",
"developer.md",
"license.md"
]
}
]
}
}