-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.06 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.06 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
{
"dependencies": {
"sax": "^1.4.1",
"xml-writer": "^1.7.0"
},
"name": "xml-twig",
"description": "Node module for processing huge XML documents in tree mode",
"version": "1.9.4",
"main": "twig.js",
"directories": {
"doc": "doc"
},
"files": [
"twig.js",
"doc/*.md"
],
"devDependencies": {
"jsdoc-to-markdown": "^9.1.3",
"luxon": "^3.7.2",
"node-expat": "^2.4.1"
},
"scripts": {
"test": "node demo.js",
"postversion": "sed -bi -e \"s/@version: .*/@version: %npm_package_version%/\" twig.js",
"prepare": "jsdoc2md --EOL win32 --private twig.js > doc/twig.md",
"postpack": "git commit -a -m \"Updated doc and version\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Wernfried/xml-twig.git"
},
"keywords": [
"xml",
"sax",
"expat",
"parser",
"xml-reader",
"twig"
],
"author": "Wernfried Domscheit",
"license": "ISC",
"bugs": {
"url": "https://github.com/Wernfried/xml-twig/issues"
},
"homepage": "https://github.com/Wernfried/xml-twig#readme"
}