7fife-backend/node_modules/tr46/package.json

48 lines
1.1 KiB
JSON
Raw Normal View History

2024-03-07 13:01:44 +00:00
{
2024-03-11 12:29:54 +00:00
"name": "tr46",
"version": "3.0.0",
2024-03-07 13:01:44 +00:00
"engines": {
"node": ">=12"
},
2024-03-11 12:29:54 +00:00
"description": "An implementation of the Unicode UTS #46: Unicode IDNA Compatibility Processing",
"main": "index.js",
2024-03-07 13:01:44 +00:00
"files": [
"index.js",
"lib/mappingTable.json",
"lib/regexes.js",
"lib/statusMapping.js"
],
2024-03-11 12:29:54 +00:00
"scripts": {
"test": "mocha",
"lint": "eslint .",
"pretest": "node scripts/getLatestTests.js",
"prepublish": "node scripts/generateMappingTable.js && node scripts/generateRegexes.js"
},
"repository": "https://github.com/jsdom/tr46",
2024-03-07 13:01:44 +00:00
"keywords": [
"unicode",
"tr46",
"uts46",
"punycode",
"url",
"whatwg"
],
2024-03-11 12:29:54 +00:00
"author": "Sebastian Mayr <npm@smayr.name>",
"contributors": [
"Timothy Gu <timothygu99@gmail.com>"
],
2024-03-07 13:01:44 +00:00
"license": "MIT",
2024-03-11 12:29:54 +00:00
"dependencies": {
"punycode": "^2.1.1"
2024-03-07 13:01:44 +00:00
},
2024-03-11 12:29:54 +00:00
"devDependencies": {
"@domenic/eslint-config": "^1.4.0",
"@unicode/unicode-14.0.0": "^1.2.1",
"eslint": "^7.32.0",
"minipass-fetch": "^1.4.1",
"mocha": "^9.1.1",
"regenerate": "^1.4.2"
2024-03-07 13:01:44 +00:00
},
2024-03-11 12:29:54 +00:00
"unicodeVersion": "14.0.0"
2024-03-07 13:01:44 +00:00
}