-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 2.15 KB
/
package.json
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
{
"name": "idna-uts46-hx",
"description": "Convert Domain Names correctly from IDN to Punycode and vice-versa and offer TR46 processing.",
"version": "6.0.6",
"private": false,
"type": "module",
"main": "dist/index.mjs",
"typings": "dist/index.d.ts",
"license": "MIT",
"sideEffects": false,
"engines": {
"node": ">=20.6.1"
},
"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": "npm run prepare",
"test": "mocha",
"test:coverage": "c8 --reporter=html mocha",
"posttest:coverage": "vite --config vite.config.coverage.js",
"preserve": "npm run prepare; cp node_modules/mocha/mocha.css dist/index.bundle.js dist/index.mjs test",
"serve": "vite",
"lint": "eslint .",
"prepare": "npm run build && npx lint-staged"
},
"overrides": {
"glob-parent": "^6.0.2",
"chokidar": "^3.5.3"
},
"dependencies": {
"tr46": "^5.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"c8": "^10.0.0",
"eslint": "^9.1.1",
"lint-staged": "^15.0.1",
"mocha": "^11.0.1",
"prettier": "^3.0.0",
"rollup": "^4.0.0",
"rollup-plugin-bundle-size": "^1.0.3",
"semantic-release": "^24.0.0",
"semantic-release-teams-notify-plugin": "github:centralnicgroup-opensource/rtldev-middleware-semantic-release-notify-plugin",
"terser": "^5.19.4",
"vite": "^6.0.7"
},
"lint-staged": {
"*": "prettier -u --write"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"singleQuote": true
}
}