forked from mathiasbynens/punycode.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.27 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.27 KB
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
{
"name": "punycode",
"version": "1.2.4",
"description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.",
"homepage": "http://mths.be/punycode",
"main": "punycode.js",
"keywords": [
"punycode",
"unicode",
"idn",
"idna",
"dns",
"url",
"domain"
],
"licenses": [
{
"type": "MIT",
"url": "http://mths.be/mit"
}
],
"author": {
"name": "Mathias Bynens",
"email": "mathias@qiwi.be",
"url": "http://mathiasbynens.be/"
},
"contributors": [
{
"name": "Mathias Bynens",
"email": "mathias@qiwi.be",
"url": "http://mathiasbynens.be/"
},
{
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"url": "http://allyoucanleet.com/"
}
],
"bugs": {
"url": "https://github.com/bestiejs/punycode.js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/bestiejs/punycode.js.git"
},
"engines": [
"node",
"rhino"
],
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"test": "node tests/tests.js"
},
"devDependencies": {
"grunt": "~0.4.4",
"grunt-contrib-uglify": "~0.4.0",
"grunt-shell": "~0.6.4",
"istanbul": "~0.2.7",
"qunit-clib": "~1.3.0",
"qunitjs": "~1.11.0",
"requirejs": "~2.1.11"
}
}