-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.12 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.12 KB
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
{
"name": "@codask/xml2json",
"description": "Converts xml to json and vice-versa",
"version": "0.0.3",
"type": "module",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"keywords": [
"xml",
"json",
"parser"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tristan-greffe/node-xml2json.git"
},
"author": {
"name": "Tristan Greffe contributors",
"url": "https://github.com/tristan-greffe"
},
"bugs": {
"url": "https://github.com/tristan-greffe/node-xml2json/issues"
},
"scripts": {
"publish": "git push origin --tags && git push origin",
"release:patch": "npm version patch && npm publish --access public",
"release:minor": "npm version minor && npm publish --access public",
"release:major": "npm version major && npm publish --access public",
"test": "jest",
"coverage": "jest --coverage"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"babel-jest": "^29.7.0",
"jest": "^29.7.0"
},
"dependencies": {
"lodash": "^4.17.21",
"xmldom": "^0.6.0"
}
}