source: frontend/node_modules/tr46/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 1.0 KB
Line 
1{
2 "name": "tr46",
3 "version": "2.1.0",
4 "engines": {
5 "node": ">=8"
6 },
7 "description": "An implementation of the Unicode UTS #46: Unicode IDNA Compatibility Processing",
8 "main": "index.js",
9 "files": [
10 "index.js",
11 "lib/mappingTable.json",
12 "lib/regexes.js",
13 "lib/statusMapping.js"
14 ],
15 "scripts": {
16 "test": "mocha",
17 "lint": "eslint .",
18 "pretest": "node scripts/getLatestTests.js",
19 "prepublish": "node scripts/generateMappingTable.js && node scripts/generateRegexes.js"
20 },
21 "repository": "https://github.com/jsdom/tr46",
22 "keywords": [
23 "unicode",
24 "tr46",
25 "uts46",
26 "punycode",
27 "url",
28 "whatwg"
29 ],
30 "author": "Sebastian Mayr <npm@smayr.name>",
31 "contributors": [
32 "Timothy Gu <timothygu99@gmail.com>"
33 ],
34 "license": "MIT",
35 "dependencies": {
36 "punycode": "^2.1.1"
37 },
38 "devDependencies": {
39 "eslint": "^7.27.0",
40 "mocha": "^8.4.0",
41 "node-fetch": "^2.6.0",
42 "regenerate": "^1.4.2",
43 "unicode-13.0.0": "^0.8.0"
44 },
45 "unicodeVersion": "13.0.0"
46}
Note: See TracBrowser for help on using the repository browser.