-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 990 Bytes
/
package.json
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
{
"name": "xml-buffer-tostring",
"version": "0.1.0",
"description": "The library converts a buffer containing a XML serialized to a string, detecting the proper encoding",
"main": "index.js",
"scripts": {
"test": "mocha './test/**/*.test.js'",
"coverage": "nyc --reporter=lcov --reporter=text-summary npm test",
"ci:coverage:report": "codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ziluvatar/node-xml-buffer-tostring.git"
},
"keywords": [
"xml",
"encoding",
"prolog",
"bom",
"buffer",
"decode"
],
"author": "Eduardo Díaz",
"license": "MIT",
"bugs": {
"url": "https://github.com/ziluvatar/node-xml-buffer-tostring/issues"
},
"homepage": "https://github.com/ziluvatar/node-xml-buffer-tostring#readme",
"devDependencies": {
"codecov": "^2.3.1",
"mocha": "^4.0.1",
"nyc": "^11.2.1"
},
"dependencies": {
"iconv-lite": "^0.4.19"
},
"files": [
"index.js"
]
}