1 | {
|
2 | "name": "punycode",
|
3 | "version": "2.3.1",
|
4 | "description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.",
|
5 | "homepage": "https://mths.be/punycode",
|
6 | "main": "punycode.js",
|
7 | "jsnext:main": "punycode.es6.js",
|
8 | "module": "punycode.es6.js",
|
9 | "engines": {
|
10 | "node": ">=6"
|
11 | },
|
12 | "keywords": [
|
13 | "punycode",
|
14 | "unicode",
|
15 | "idn",
|
16 | "idna",
|
17 | "dns",
|
18 | "url",
|
19 | "domain"
|
20 | ],
|
21 | "license": "MIT",
|
22 | "author": {
|
23 | "name": "Mathias Bynens",
|
24 | "url": "https://mathiasbynens.be/"
|
25 | },
|
26 | "contributors": [
|
27 | {
|
28 | "name": "Mathias Bynens",
|
29 | "url": "https://mathiasbynens.be/"
|
30 | }
|
31 | ],
|
32 | "repository": {
|
33 | "type": "git",
|
34 | "url": "https://github.com/mathiasbynens/punycode.js.git"
|
35 | },
|
36 | "bugs": "https://github.com/mathiasbynens/punycode.js/issues",
|
37 | "files": [
|
38 | "LICENSE-MIT.txt",
|
39 | "punycode.js",
|
40 | "punycode.es6.js"
|
41 | ],
|
42 | "scripts": {
|
43 | "test": "mocha tests",
|
44 | "build": "node scripts/prepublish.js"
|
45 | },
|
46 | "devDependencies": {
|
47 | "codecov": "^3.8.3",
|
48 | "nyc": "^15.1.0",
|
49 | "mocha": "^10.2.0"
|
50 | },
|
51 | "jspm": {
|
52 | "map": {
|
53 | "./punycode.js": {
|
54 | "node": "@node/punycode"
|
55 | }
|
56 | }
|
57 | }
|
58 | }
|