-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
40 lines (40 loc) · 879 Bytes
/
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
{
"name": "idna-uts46",
"version": "1.1.0",
"description": "A UTS #46 processing algorithm for IDNA2008 strings",
"main": "uts46.js",
"keywords": [
"unicode",
"idn",
"idna",
"domain"
],
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "https://github.com/jcranmer/idna-uts46"
},
"author": "Joshua Cranmer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jcranmer/idna-uts46/issues"
},
"homepage": "https://github.com/jcranmer/idna-uts46",
"dependencies": {
"punycode": "^2.1.0"
},
"devDependencies": {
"chai": "^3.2.0",
"grunt": "^1.0.1",
"grunt-mocha-istanbul": "^5.0.2",
"grunt-mocha-test": "^0.13.2",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"requirejs-browser": "^2.1.9"
},
"engines": {
"node": ">=4.0.0"
}
}