-
Notifications
You must be signed in to change notification settings - Fork 128
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.74 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "xmltojson",
"version": "2.0.0",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js"
},
"files": ["dist"],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && rollup -c",
"dev": "rollup -c -w",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "jest --watch",
"test:browser": "playwright test",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.js\" \"test/**/*.js\"",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm test",
"serve:demo": "http-server demo -p 8080"
},
"repository": {
"type": "git",
"url": "https://github.com/metatribal/xmltojson.git"
},
"keywords": [
"xml",
"json",
"transform",
"converter"
],
"author": "metatribal",
"license": "MIT",
"bugs": {
"url": "https://github.com/metatribal/xmlToJSON/issues"
},
"homepage": "https://github.com/metatribal/xmlToJSON",
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@playwright/test": "^1.32.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"http-server": "^14.1.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-html-reporters": "^3.1.7",
"jsdoc": "^4.0.2",
"prettier": "^2.8.7",
"rimraf": "^5.0.0",
"rollup": "^3.20.2",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-filesize": "^10.0.0"
}
}