forked from michaelkourlas/node-js2xmlparser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.11 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
{
"name": "js2xmlparser",
"version": "3.0.0",
"description": "Parses JavaScript objects into XML",
"keywords": [
"convert",
"converter",
"javascript",
"js",
"json",
"object",
"objects",
"parse",
"parser",
"xml"
],
"license": "Apache-2.0",
"author": {
"name": "Michael Kourlas",
"email": "[email protected]"
},
"files": [
"lib",
"CHANGES.md",
"LICENSE.md",
"NOTICE.md",
"package.json",
"README.md"
],
"main": "./lib/main.js",
"typings": "./lib/main",
"repository": {
"type": "git",
"url": "git://github.com/michaelkourlas/node-js2xmlparser.git"
},
"dependencies": {
"xmlcreate": "^1.0.1"
},
"devDependencies": {
"@types/chai": "^3.4.35",
"@types/mocha": "^2.2.39",
"chai": "^3.5.0",
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-mocha": "^4.0.1",
"gulp-sourcemaps": "^2.4.1",
"gulp-tslint": "^7.1.0",
"gulp-typedoc": "^2.0.2",
"gulp-typescript": "^3.1.5",
"merge2": "^1.0.3",
"mocha": "^3.2.0",
"tslint": "^4.4.2",
"typedoc": "^0.5.7",
"typescript": "^2.1.6"
}
}