-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
56 lines (56 loc) · 1.29 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": "jxon",
"version": "2.0.0-beta.5",
"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": "jxon.js",
"scripts": {
"pretest": "npm ls --depth=Infinity > /dev/null",
"test": "npm run test-node && npm run test-webkit",
"test-node": "mocha test/spec.js",
"test-webkit": "browserify test/spec.js > test/spec.browserify.js && mocha-phantomjs test/index.html",
"minify": "uglifyjs jxon.js --comments all --ascii --mangle --output jxon.min.js"
},
"author": "MDN (https://developer.mozilla.org/en-US/docs/JXON)",
"contributors": [
{
"name": "Martin Raifer",
"email": "tyr.asd@gmail.com"
},
{
"name": "Igor Dimitrijevic",
"email": "igor@ground.gr"
}
],
"repository": {
"type": "git",
"url": "git://github.com/tyrasd/jxon.git"
},
"license": "GPL v3",
"dependencies": {
"xmldom": "^0.1.21"
},
"devDependencies": {
"browserify": "^13.0.0",
"chai": "^3.4.1",
"mocha": "~2.1.0",
"mocha-phantomjs": "^4.0.2"
},
"browser": {
"xmldom": false
}
}