-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.46 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "read-xml",
"version": "3.0.0",
"description": "Read a xml file respecting its encoding information",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib --ignore node_modules",
"lint": "eslint src test",
"test": "mocha",
"prepublishOnly": "npm-run-all lint clean build"
},
"keywords": [
"xml",
"encoding",
"xml encoding",
"xmljs",
"read xml"
],
"author": "BJR Matos <[email protected]> (https://github.com/bjrmatos)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bjrmatos/read-xml.git"
},
"bugs": {
"url": "https://github.com/bjrmatos/read-xml/issues"
},
"homepage": "https://github.com/bjrmatos/read-xml",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-import": "2.10.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-react": "7.7.0",
"expect.js": "0.3.1",
"mocha": "5.0.5",
"npm-run-all": "4.1.2",
"rimraf": "2.6.2",
"should": "13.2.1"
},
"dependencies": {
"concat-stream": "1.6.2",
"debug": "3.1.0",
"iconv-lite": "0.4.21",
"once": "1.4.0",
"parse-attributes": "0.0.1",
"sax": "1.2.4"
}
}