forked from slickplaid/node-ent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 829 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 829 Bytes
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
{
"name" : "ent",
"description" : "Encode and decode HTML entities",
"version" : "0.0.5",
"repository" : "https://github.com/substack/node-ent.git",
"author" : "James Halliday <mail@substack.net> (http://substack.net)",
"main" : "./index.js",
"keywords" : [
"entities",
"entitify",
"entity",
"html",
"encode",
"decode"
],
"license" : "perl",
"scripts" : {
"test" : "tap test/*.js"
},
"testling" : {
"files" : "test/*.js",
"browsers" : {
"ie" : [ 6, 7, 8, 9 ],
"ff" : [ 3.5, 10, 15.0 ],
"chrome" : [ 10, 22 ],
"safari" : [ 5.1 ],
"opera" : [ 12 ]
}
},
"devDependencies" : {
"tap" : "~0.3.3",
"tape" : "~0.1.0"
}
}