-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 915 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 915 Bytes
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
{
"name": "identify-stream",
"version": "1.0.3",
"description": "Indentify the contents of a Node stream based on the presence of a file signature.",
"main": "./lib/index.js",
"scripts": {
"test": "nyc --reporter=lcov mocha",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git@github.com:chrisdc/identify-stream.git"
},
"keywords": [
"identify",
"signature",
"nodejs",
"stream",
"magic",
"number",
"detect",
"type"
],
"author": "Christopher Crouch",
"license": "ISC",
"bugs": {
"url": "https://github.com/chrisdc/identify-stream/issues"
},
"homepage": "https://github.com/chrisdc/identify-stream",
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"eslint": "^7.32.0",
"mocha": "^9.1.2",
"nyc": "^15.1.0",
"stream-buffers": "^3.0.2"
},
"files": [
"/lib",
"/data"
]
}