package.json
1002 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "strip-bom",
"version": "1.0.0",
"description": "Strip UTF-8 byte order mark (BOM) from a string/buffer/stream",
"license": "MIT",
"repository": "sindresorhus/strip-bom",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "http://sindresorhus.com"
},
"bin": {
"strip-bom": "cli.js"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"files": [
"cli.js",
"index.js"
],
"keywords": [
"cli",
"bin",
"app",
"bom",
"strip",
"byte",
"mark",
"unicode",
"utf8",
"utf-8",
"remove",
"trim",
"text",
"buffer",
"string",
"stream",
"streams"
],
"dependencies": {
"first-chunk-stream": "^1.0.0",
"is-utf8": "^0.2.0"
},
"devDependencies": {
"concat-stream": "^1.4.5",
"mocha": "*"
},
"_from": "strip-bom@1.0.0",
"_resolved": "http://registry.npm.taobao.org/strip-bom/download/strip-bom-1.0.0.tgz"
}