forked from jsdom/jsdom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 3.04 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
{
"name": "jsdom",
"version": "0.8.9",
"description": "A JavaScript implementation of the W3C DOM",
"keywords": ["dom", "w3c", "html"],
"maintainers": [
"Elijah Insua <tmpvar@gmail.com> (http://tmpvar.com)",
"Domenic Denicola <domenic@domenicdenicola.com (http://domenicdenicola.com)"
],
"contributors": [
"Vincent Greene <ulteriorlife@gmail.com>",
"Dav Glass <davglass@gmail.com>",
"Felix Gnass <fgnass@gmail.com>",
"Charlie Robbins <charlie.robbins@gmail.com>",
"Aria Stewart <aredridel@nbtsc.org>",
"Matthew <N.A.> (http://github.com/matthewpflueger/)",
"Olivier El Mekki <unknown> (http://blog.olivier-elmekki.com/)",
"Shimon Dookdin <helpmepro1@gmail.com>",
"Daniel Cassidy <mail@danielcassidy.me.uk> (http://www.danielcassidy.me.uk/)",
"Sam Ruby (http://intertwingly.net/blog/)",
"hij1nx (http://github.com/hij1nx)",
"Yonathan Randolph (http://github.com/yonran)",
"Martin Davis (http://github.com/waslogic)",
"Andreas Lind Petersen <andreas@one.com>",
"d-ash (http://github.com/d-ash)",
"Robin Zhong <fbzhong@gmail.com>",
"Alexander Flatter <flatter@gmail.com>",
"Heng Liu <liucougar@gmail.com>",
"Brian McDaniel (http://github.com/brianmcd)",
"John Hurliman <jhurliman@jhurliman.org>",
"Jimmy Mabey",
"Gregory Tomlinson",
"Jason Davies (http://www.jasondavies.com/)",
"Josh Marshall (http://www.ponderingtheobvious.com/)",
"Jason Priestley (https://github.com/jhp)",
"Derek Lindahl (https://github.com/dlindahl)",
"Chris Roebuck <chris@quillu.com> (http://www.quillu.com)",
"Avi Deitcher (https://github.com/deitch)",
"Nao Iizuka <iizuka@kyu-mu.net> (https://github.com/iizukanao)",
"Peter Perenyi (https://github.com/sinegar)",
"Tiago Rodrigues <tmcrodrigues@gmail.com> (http://trodrigues.net)",
"Samori Gorse <samorigorse@gmail.com> (http://github.com/shinuza)",
"John Roberts <jroberts@logitech.com>",
"Chad Walker <chad@chad-cat-lore-eddie.com> (https://github.com/chad3814)",
"Zach Smith <x.coder.zach@gmail.com> (https://github.com/xcoderzach)"
],
"bugs": {
"email": "tmpvar@gmail.com",
"url": "http://github.com/tmpvar/jsdom/issues"
},
"license": {
"type": "MIT",
"url": "http://github.com/tmpvar/jsdom/blob/master/LICENSE.txt"
},
"repository": {
"type": "git",
"url": "git://github.com/tmpvar/jsdom.git"
},
"implements": [
"http://www.w3.org/TR/REC-DOM-Level-1"
],
"dependencies": {
"htmlparser2": ">= 3.1.5 <4",
"nwmatcher": "~1.3.1",
"request": "2.x",
"xmlhttprequest": ">=1.5.0",
"cssom": "~0.3.0",
"cssstyle": "0.2.36"
},
"devDependencies" : {
"nodeunit": "~0.8.0",
"optimist": "*",
"urlmaster": ">=0.2.15"
},
"scripts": {
"test": "node ./test/runner"
},
"main": "./lib/jsdom"
}