forked from oozcitak/xmlbuilder2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.44 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
{
"name": "@datagalaxy/xmlbuilder2",
"version": "4.0.0",
"keywords": [
"xml",
"xmlbuilder"
],
"homepage": "https://github.com/datagalaxy-lab/xmlbuilder2",
"description": "An XML builder for node.js",
"author": "Ozgur Ozcitak <[email protected]>",
"contributors": [
"Guillaume Grossetie <[email protected]>"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/datagalaxy-lab/xmlbuilder2.git"
},
"bugs": {
"url": "https://github.com/datagalaxy-lab/xmlbuilder2/issues"
},
"main": "./lib/index",
"browser": "./lib/xmlbuilder2.min.js",
"engines": {
"node": ">=14.0"
},
"files": [
"lib/**/*"
],
"types": "./lib/index.d.ts",
"dependencies": {
"@oozcitak/dom": "1.15.10",
"@oozcitak/infra": "1.0.8",
"@oozcitak/util": "8.3.9",
"@types/node": "18.13.0",
"js-yaml": "3.14.0"
},
"devDependencies": {
"@babel/preset-env": "~7.20",
"@babel/runtime-corejs3": "~7.20",
"@types/benchmark": "~2.1",
"@types/dedent": "~0.7",
"@types/jest": "~29.4",
"@types/js-yaml": "~3.11",
"babel-loader": "~9.1",
"benchmark": "~2.1",
"buffer": "6.0.3",
"chalk": "~5.2",
"core-js": "~3.28",
"dedent": "~0.7",
"es6-proxy-polyfill": "~2.1",
"glob": "~8.1",
"harmony-reflect": "~1.6",
"jest": "~29.4",
"libxmljs2": "~0.31",
"ts-jest": "~29.0",
"ts-loader": "~9.4",
"ts-node": "~10.9",
"typescript": "~4.9",
"url": "0.11.0",
"webpack": "~5.75",
"webpack-cli": "~5.0",
"xmlbuilder": "~15.1",
"xpath": "0.0.32"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "/test/.*\\.test\\.tsx?$",
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
]
},
"scripts": {
"prepare": "tsc && webpack",
"pretest": "rm -rf ./lib && tsc --version && tsc && webpack",
"test": "jest --coverage",
"perf": "npm run pretest && ts-node ./perf/perf.ts",
"perf-cb": "npm run pretest && ts-node ./perf/perf-cb.ts",
"prof-serialize": "npm run pretest && rm -f isolate-*-v8.log && node --prof ./perf/prof-serialize.js && find . -name isolate-*-v8.log -exec mv {} isolate-v8.log ; && node --prof-process isolate-v8.log > isolate-serialize.log && rm isolate-v8.log",
"servedocs": "(cd docs && bundle exec jekyll serve)"
}
}