forked from jsdom/jsdom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 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
{
"name": "jsdom",
"version": "0.11.1",
"description": "A JavaScript implementation of the DOM and HTML standards",
"keywords": ["dom", "html", "whatwg", "w3c"],
"maintainers": [
"Elijah Insua <[email protected]> (http://tmpvar.com)",
"Domenic Denicola <[email protected] (http://domenic.me/)"
],
"contributors": [
"Vincent Greene <[email protected]>",
"Dav Glass <[email protected]>",
"Felix Gnass <[email protected]>",
"Charlie Robbins <[email protected]>",
"Aria Stewart <[email protected]>",
"Matthew <N.A.> (http://github.com/matthewpflueger/)",
"Olivier El Mekki <unknown> (http://blog.olivier-elmekki.com/)",
"Shimon Dookdin <[email protected]>",
"Daniel Cassidy <[email protected]> (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 <[email protected]>",
"d-ash (http://github.com/d-ash)",
"Robin Zhong <[email protected]>",
"Alexander Flatter <[email protected]>",
"Heng Liu <[email protected]>",
"Brian McDaniel (http://github.com/brianmcd)",
"John Hurliman <[email protected]>",
"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 <[email protected]> (http://www.quillu.com)",
"Avi Deitcher (https://github.com/deitch)",
"Nao Iizuka <[email protected]> (https://github.com/iizukanao)",
"Peter Perenyi (https://github.com/sinegar)",
"Tiago Rodrigues <[email protected]> (http://trodrigues.net)",
"Samori Gorse <[email protected]> (http://github.com/shinuza)",
"John Roberts <[email protected]>",
"Chad Walker <[email protected]> (https://github.com/chad3814)",
"Zach Smith <[email protected]> (https://github.com/xcoderzach)"
],
"bugs": {
"email": "[email protected]",
"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"
},
"dependencies": {
"htmlparser2": ">= 3.1.5 <4",
"parse5": "~1.0.0",
"nwmatcher": "~1.3.2",
"request": "2.x",
"xmlhttprequest": ">=1.5.0",
"cssom": "~0.3.0",
"cssstyle": "~0.2.9",
"contextify": "~0.1.5"
},
"devDependencies" : {
"nodeunit": "~0.8.0",
"optimist": "*",
"urlmaster": ">=0.2.15"
},
"scripts": {
"test": "node ./test/runner"
},
"main": "./lib/jsdom"
}