forked from jsdom/jsdom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (97 loc) · 2.36 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
94
95
96
97
{
"name": "jsdom",
"version": "0.2.0",
"description": "A javascript implementation of the W3C DOM",
"keywords": [
"dom",
"w3c",
"javascript"
],
"maintainers": [
{
"name": "Elijah Insua",
"email": "tmpvar@gmail.com",
"web": "http://tmpvar.com"
}
],
"contributors": [
{
"name": "Vincent Greene",
"email": "ulteriorlife@gmail.com"
},
{
"name": "Dav Glass",
"email": "davglass@gmail.com"
},
{
"name": "Felix Gnass",
"email": "fgnass@gmail.com"
},
{
"name" : "Charlie Robins",
"email": "charlie.robbins@gmail.com"
},
{
"name" : "Aria Stewart",
"email": "aredridel@nbtsc.org"
},
{
"name" : "Matthew (http://github.com/matthewpflueger/)",
"email": "N.A."
},
{
"name" : "Olivier El Mekki (http://blog.olivier-elmekki.com/)",
"email" : "unknown"
},
{
"name" : "Shimon Dookdin",
"email" : "helpmepro1@gmail.com"
},
{
"name" : "Daniel Cassidy (http://www.danielcassidy.me.uk/)",
"email" : "mail@danielcassidy.me.uk"
},
{
"name" : "Sam Ruby (http://intertwingly.net/blog/)",
"email" : "N/A"
},
{
"name" : "hij1nx (http://github.com/hij1nx)"
},
{
"name" : "Karuna Sagar",
"email" : "karunasagark@gmail.com"
}
],
"bugs": {
"mail": "tmpvar@gmail.com",
"web": "http://github.com/tmpvar/jsdom/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/tmpvar/jsdom/blob/master/LICENSE.txt"
}
],
"repositories": [
{
"type": "git",
"url": "http://github.com/tmpvar/jsdom.git"
}
],
"implements": [
"http://www.w3.org/TR/REC-DOM-Level-1"
],
"dependencies": {
"htmlparser": ">=1.7.0",
"request" : ">=1.0.0"
},
"devDependiencies" : {
"mjsunit.runner" : ">=0.1.0"
},
"engines" : { "node" : ">=0.1.9" },
"directories": {
"lib": "./lib/jsdom"
},
"main": "./lib/jsdom"
}