forked from Leonidas-from-XIV/node-xml2js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.92 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "xml2js",
"description": "Simple XML to JavaScript object converter.",
"keywords": [
"xml",
"json"
],
"homepage": "https://github.com/Leonidas-from-XIV/node-xml2js",
"version": "0.4.20",
"author": "Marek Kubica <marek@xivilization.net> (https://xivilization.net)",
"contributors": [
"maqr <maqr.lollerskates@gmail.com> (https://github.com/maqr)",
"Ben Weaver (http://benweaver.com/)",
"Jae Kwon (https://github.com/jaekwon)",
"Jim Robert",
"Ștefan Rusu (http://www.saltwaterc.eu/)",
"Carter Cole <carter.cole@cartercole.com> (http://cartercole.com/)",
"Kurt Raschke <kurt@kurtraschke.com> (http://www.kurtraschke.com/)",
"Contra <contra@australia.edu> (https://github.com/Contra)",
"Marcelo Diniz <marudiniz@gmail.com> (https://github.com/mdiniz)",
"Michael Hart (https://github.com/mhart)",
"Zachary Scott <zachary@zacharyscott.net> (http://zacharyscott.net/)",
"Raoul Millais (https://github.com/raoulmillais)",
"Salsita Software (http://www.salsitasoft.com/)",
"Mike Schilling <mike@emotive.com> (http://www.emotive.com/)",
"Jackson Tian <shyvo1987@gmail.com> (http://weibo.com/shyvo)",
"Mikhail Zyatin <mikhail.zyatin@gmail.com> (https://github.com/Sitin)",
"Chris Tavares <ctavares@microsoft.com> (https://github.com/christav)",
"Frank Xu <yyfrankyy@gmail.com> (http://f2e.us/)",
"Guido D'Albore <guido@bitstorm.it> (http://www.bitstorm.it/)",
"Jack Senechal (http://jacksenechal.com/)",
"Matthias Hölzl <tc@xantira.com> (https://github.com/hoelzl)",
"Camille Reynders <info@creynders.be> (http://www.creynders.be/)",
"Taylor Gautier (https://github.com/tsgautier)",
"Todd Bryan (https://github.com/toddrbryan)",
"Leore Avidar <leore.avidar@gmail.com> (http://leoreavidar.com/)",
"Dave Aitken <dave.aitken@gmail.com> (http://www.actionshrimp.com/)",
"Shaney Orrowe <shaney.orrowe@practiceweb.co.uk>",
"Candle <candle@candle.me.uk>",
"Jess Telford <hi@jes.st> (http://jes.st)",
"Tom Hughes <<tom@compton.nu> (http://compton.nu/)",
"Piotr Rochala (http://rocha.la/)",
"Michael Avila (https://github.com/michaelavila)",
"Ryan Gahl (https://github.com/ryedin)",
"Eric Laberge <e.laberge@gmail.com> (https://github.com/elaberge)",
"Benjamin E. Coe <ben@npmjs.com> (https://twitter.com/benjamincoe)",
"Stephen Cresswell (https://github.com/cressie176)",
"Pascal Ehlert <pascal@hacksrus.net> (http://www.hacksrus.net/)",
"Tom Spencer <fiznool@gmail.com> (http://fiznool.com/)",
"Tristian Flanagan <tflanagan@datacollaborative.com> (https://github.com/tflanagan)",
"Tim Johns <timjohns@yahoo.com> (https://github.com/TimJohns)",
"Bogdan Chadkin <trysound@yandex.ru> (https://github.com/TrySound)",
"David Wood <david.p.wood@gmail.com> (http://codesleuth.co.uk/)",
"Nicolas Maquet (https://github.com/nmaquet)",
"Lovell Fuller (http://lovell.info/)",
"d3adc0d3 (https://github.com/d3adc0d3)"
],
"main": "./lib/xml2js",
"files": [
"lib"
],
"directories": {
"lib": "./lib"
},
"scripts": {
"test": "zap",
"coverage": "nyc npm test && nyc report",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"browserify": "browserify ./lib/xml2js.js -s xml2js | derequire > ./dist/xml2js.js",
"minify": "cat ./dist/xml2js.js | uglifyjs > ./dist/xml2js.min.js",
"compile": "coffee --compile --output lib/ src",
"all": "npm run test && npm run compile && npm run browserify && npm run minify"
},
"repository": {
"type": "git",
"url": "https://github.com/Leonidas-from-XIV/node-xml2js.git"
},
"dependencies": {
"sax": ">=0.6.0",
"xmlbuilder": "~9.0.1"
},
"devDependencies": {
"browserify": "^16.2.2",
"coffee-script": ">=1.10.0",
"coveralls": "^2.11.2",
"derequire": "^2.0.6",
"diff": ">=1.0.8",
"docco": ">=0.6.2",
"nyc": ">=2.2.1",
"zap": ">=0.2.9"
},
"license": "MIT"
}