forked from tyrasd/jxon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.12 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
{
"name": "jxon",
"version": "1.6.1",
"description": "A complete, bidirectional, JXON library",
"keywords": [
"jxon",
"bidirectional",
"loseless",
"badgerfish",
"parker convention",
"xml to js",
"xml2js",
"xml to json",
"xml2json",
"js to xml",
"js2xml",
"json to xml",
"json2xml"
],
"main": "index.js",
"scripts": {
"pretest": "npm ls --depth=Infinity > /dev/null",
"test": "npm run test-node && npm run test-webkit",
"test-node": "mocha test/test.js",
"test-webkit": "mocha-phantomjs test/index.html"
},
"author": "MDN (https://developer.mozilla.org/en-US/docs/JXON)",
"contributors": [
{
"name": "Martin Raifer",
"email": "[email protected]"
},
{
"name": "Igor Dimitrijevic",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git://github.com/tyrasd/jxon.git"
},
"browser": {
"xmldom": false
},
"license": "GPL v3",
"dependencies": {
"mocha-phantomjs": "^4.0.2",
"xmldom": "0.1.19"
},
"devDependencies": {
"mocha": "~2.1.0",
"assert": "~1.3.0"
}
}