summaryrefslogtreecommitdiff
path: root/node_modules/punycode.js/package.json
diff options
context:
space:
mode:
authorShipwreckt <me@shipwreckt.co.uk>2025-10-31 20:02:14 +0000
committerShipwreckt <me@shipwreckt.co.uk>2025-10-31 20:02:14 +0000
commit7a52ddeba2a68388b544f529d2d92104420f77b0 (patch)
tree15ddd47457a2cb4a96060747437d36474e4f6b4e /node_modules/punycode.js/package.json
parent53d6ae2b5568437afa5e4995580a3fb679b7b91b (diff)
Changed from static to 11ty!
Diffstat (limited to 'node_modules/punycode.js/package.json')
-rw-r--r--node_modules/punycode.js/package.json58
1 files changed, 58 insertions, 0 deletions
diff --git a/node_modules/punycode.js/package.json b/node_modules/punycode.js/package.json
new file mode 100644
index 0000000..7794798
--- /dev/null
+++ b/node_modules/punycode.js/package.json
@@ -0,0 +1,58 @@
+{
+ "name": "punycode.js",
+ "version": "2.3.1",
+ "description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.",
+ "homepage": "https://mths.be/punycode",
+ "main": "punycode.js",
+ "jsnext:main": "punycode.es6.js",
+ "module": "punycode.es6.js",
+ "engines": {
+ "node": ">=6"
+ },
+ "keywords": [
+ "punycode",
+ "unicode",
+ "idn",
+ "idna",
+ "dns",
+ "url",
+ "domain"
+ ],
+ "license": "MIT",
+ "author": {
+ "name": "Mathias Bynens",
+ "url": "https://mathiasbynens.be/"
+ },
+ "contributors": [
+ {
+ "name": "Mathias Bynens",
+ "url": "https://mathiasbynens.be/"
+ }
+ ],
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/mathiasbynens/punycode.js.git"
+ },
+ "bugs": "https://github.com/mathiasbynens/punycode.js/issues",
+ "files": [
+ "LICENSE-MIT.txt",
+ "punycode.js",
+ "punycode.es6.js"
+ ],
+ "scripts": {
+ "test": "mocha tests",
+ "build": "node scripts/prepublish.js"
+ },
+ "devDependencies": {
+ "codecov": "^3.8.3",
+ "nyc": "^15.1.0",
+ "mocha": "^10.2.0"
+ },
+ "jspm": {
+ "map": {
+ "./punycode.js": {
+ "node": "@node/punycode"
+ }
+ }
+ }
+}