-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.19 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.19 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "idna-uts46-hx",
"description": "Convert Domain Names correctly from IDN to Punycode and vice-versa and offer TR46 processing.",
"version": "6.1.7",
"private": false,
"type": "module",
"main": "dist/index.mjs",
"typings": "dist/index.d.ts",
"files": [
"dist/",
"src/"
],
"license": "MIT",
"sideEffects": false,
"engines": {
"node": "^22.14.0 || >= 24.10.0"
},
"homepage": "https://github.com/centralnicgroup-opensource/rtldev-middleware-idna-uts46",
"repository": "github:centralnicgroup-opensource/rtldev-middleware-idna-uts46",
"bugs": "https://github.com/centralnicgroup-opensource/rtldev-middleware-idna-uts46/issues",
"keywords": [
"unicode",
"idn",
"idna",
"domain",
"convert",
"converter"
],
"scripts": {
"prettier": "prettier -u --write \"**/*\"",
"build": "rollup -c rollup-esm.config.mjs",
"pretest": "pnpm run prepare",
"test": "mocha",
"test:coverage": "c8 --reporter=html mocha",
"posttest:coverage": "vite --config vite.config.coverage.js",
"preserve": "pnpm run prepare; cp node_modules/mocha/mocha.css dist/index.bundle.js dist/index.mjs test",
"serve": "vite",
"lint": "eslint .",
"prepare": "pnpm run build && npx lint-staged"
},
"dependencies": {
"tr46": "^6.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@rollup/plugin-commonjs": "^29.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"c8": "^11.0.0",
"eslint": "^10.0.2",
"globals": "^17.4.0",
"lint-staged": "^16.3.2",
"mocha": "^11.7.5",
"prettier": "^3.8.1",
"rollup": "^4.59.0",
"rollup-plugin-bundle-size": "^1.0.3",
"semantic-release": "^25.0.3",
"semantic-release-teams-notify-plugin": "github:centralnicgroup-opensource/rtldev-middleware-semantic-release-notify-plugin",
"terser": "^5.46.0",
"vite": "^8.0.3"
},
"lint-staged": {
"*": "prettier -u --write"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"singleQuote": true
}
}