-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
96 lines (96 loc) · 2.36 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "parserblade",
"version": "1.2.0",
"description": "The easiest parser for JSON, XML, CSV and YAML. Use it as simple as JSON.stringify() or JSON.parse(). All in one place.",
"homepage": "https://onhernandes.github.io/parserblade",
"author": {
"name": "Matheus Hernandes",
"email": "",
"url": "onhernandes.github.io"
},
"files": [
"src"
],
"main": "src/index.js",
"keywords": [
"parser",
"data-parser",
"stream",
"stream-parser",
"streaming-parser",
"csv-parser",
"csv-parser-stream",
"csv-stringify",
"csv-stringify-stream",
"transform-csv",
"csv-streaming",
"csv",
"yaml-parser",
"yaml-stringify",
"yaml-stringify-stream",
"yaml-parser-stream",
"transform-yaml",
"yaml",
"xml-parser",
"xml-stringify",
"xml-parser-stream",
"xml-stringify-stream",
"transform-xml",
"xml",
"json",
"json-parser",
"json-stringify",
"json-stringify-stream",
"json-parser-stream"
],
"devDependencies": {
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-inject-style-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^7.4.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.0.9",
"jest": "^26.1.0",
"lint-staged": "^9.4.3"
},
"engines": {
"npm": ">= 4.0.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"test": "./node_modules/.bin/jest --no-cache",
"tdd": "./node_modules/.bin/jest --watch --no-cache",
"docs": "./node_modules/.bin/esdoc",
"lint": "./node_modules/.bin/eslint",
"publish-docs": "./node_modules/.bin/esdoc && git subtree push --prefix docs origin gh-pages",
"tarfile": "tar -czvf parserblade.tar.gz LICENSE package* README.md src"
},
"repository": "[email protected]:onhernandes/parserblade.git",
"jest": {
"testEnvironment": "node"
},
"license": "MIT",
"dependencies": {
"JSONStream": "^1.3.5",
"csv-parse": "^4.11.1",
"csv-stringify": "^5.5.0",
"js-yaml": "^3.14.0",
"node-xml-stream": "^1.0.2",
"xml-js": "^1.6.11"
}
}