-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
48 lines (48 loc) · 1.03 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
{
"name": "xml-writer",
"version": "1.7.0",
"author": "Nicolas Thouvenin <[email protected]>",
"contributors": [
{
"name": "Anton Zem"
},
{
"name": "Chip Lee",
"url": "https://github.com/chipincode"
},
{
"name": "Peecky",
"url": "https://github.com/peecky"
},
{
"name": "Julian Scheid",
"url": "https://github.com/jscheid"
}
],
"description": "Native and full Javascript implementation of the classic XMLWriter class",
"keywords": [
"xml",
"writer",
"XMLWriter",
"generator"
],
"homepage": "http://github.com/touv/node-xml-writer",
"scripts": {
"truc": "nodeunit test/",
"test": "./node_modules/.bin/istanbul test ./node_modules/.bin/nodeunit test/"
},
"main": "./index.js",
"repository": {
"type": "git",
"url": "https://github.com/touv/node-xml-writer.git"
},
"dependencies": {},
"devDependencies": {
"nodeunit": ">=0.7.3",
"istanbul": "*"
},
"license": "MIT",
"engines": {
"node": ">=0.4.0"
}
}