-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
82 lines (82 loc) · 2.2 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
{
"name": "xmlbuilder2",
"version": "3.1.1",
"keywords": [
"xml",
"xmlbuilder"
],
"homepage": "http://github.com/oozcitak/xmlbuilder2",
"description": "An XML builder for node.js",
"author": "Ozgur Ozcitak <[email protected]>",
"contributors": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/oozcitak/xmlbuilder2.git"
},
"bugs": {
"url": "http://github.com/oozcitak/xmlbuilder2/issues"
},
"main": "./lib/index",
"browser": "./lib/xmlbuilder2.min.js",
"engines": {
"node": ">=12.0"
},
"files": [
"lib/**/*"
],
"types": "./lib/index.d.ts",
"dependencies": {
"@oozcitak/dom": "1.15.10",
"@oozcitak/infra": "1.0.8",
"@oozcitak/util": "8.3.8",
"js-yaml": "3.14.1"
},
"devDependencies": {
"@babel/preset-env": "*",
"@babel/runtime-corejs3": "7.10.3",
"@types/benchmark": "*",
"@types/dedent": "*",
"@types/jest": "*",
"@types/js-yaml": "3.11.1",
"@types/node": "*",
"babel-loader": "*",
"benchmark": "*",
"chalk": "*",
"core-js": "3.6.5",
"dedent": "*",
"es6-proxy-polyfill": "*",
"glob": "*",
"harmony-reflect": "*",
"jest": "*",
"libxmljs2": "*",
"ts-jest": "*",
"ts-loader": "*",
"ts-node": "*",
"typescript": "*",
"webpack": "*",
"webpack-cli": "*",
"xmlbuilder": "*",
"xpath": "*"
},
"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",
"postpublish": "git push --all && git push --tags",
"servedocs": "(cd docs && bundle exec jekyll serve)"
}
}