-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
86 lines (86 loc) · 2.34 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "idna-uts46-hx",
"description": "A UTS #46 processing algorithm for IDNA2008 strings",
"version": "5.1.0",
"private": false,
"type": "module",
"main": "dist/index.mjs",
"typings": "dist/index.d.ts",
"license": "MIT",
"sideEffects": false,
"engines": {
"node": ">=16"
},
"homepage": "https://github.com/hexonet/idna-uts46",
"repository": "github:hexonet/idna-uts46",
"bugs": "https://github.com/hexonet/idna-uts46/issues",
"keywords": [
"unicode",
"idn",
"idna",
"domain"
],
"nyc": {
"reporter": [
"html",
"text"
],
"exclude": [
"test",
"scripts",
"rollup*",
"**/*.spec.js",
"idna-map.js"
]
},
"unicodeVersion": "15.1.0",
"scripts": {
"prettier": "prettier -u --write \"**/*\"",
"build": "npm run build:unicode-tables && npm run build:rollup",
"pretest": "npm run build",
"test": "mocha",
"test:coverage": "cross-env NODE_ENV=development nyc npm run test --silent",
"test:serve": "npm run test:serve-prepare && serve",
"test:serve-prepare": "cp node_modules/mocha/mocha.css dist/index.bundle.js dist/index.mjs test",
"lint": "eslint .",
"prepare": "npm run build && npx lint-staged",
"build:unicode-upgrade": "tsx scripts/unicode-upgrade.ts",
"build:unicode-checkversion": "tsx scripts/unicode-checkversion.ts",
"build:unicode-tables": "tsx scripts/build-unicode-tables.ts 15.1.0",
"build:rollup": "rollup -c rollup-esm.config.mjs"
},
"dependencies": {
"punycode": "^2.1.1"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.3",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.4.2",
"axios": "^1.3.4",
"cross-env": "^7.0.3",
"esbuild": "^0.19.2",
"eslint": "^8.35.0",
"eslint-plugin-mocha": "^10.1.0",
"lint-staged": "^14.0.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.0.0",
"rollup": "^3.29.1",
"rollup-plugin-bundle-size": "^1.0.3",
"semantic-release": "^21.0.7",
"serve": "^14.2.0",
"terser": "^5.19.4",
"tsx": "^3.12.3"
},
"lint-staged": {
"*": "prettier -u --write"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"singleQuote": true
}
}