-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 989 Bytes
/
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
{
"name": "domaintoascii",
"version": "0.1.0",
"description": "An implementation of Node.js's url.domainToASCII() in WebAssembly",
"main": "index.js",
"type": "module",
"scripts": {
"benchmark": "node scripts/benchmark.js",
"build-idna-tables": "node scripts/build-idna-tables.js",
"compare-native": "node scripts/compare-native.js",
"test": "c8 --include=index.js mocha --check-leaks tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mjethani/domaintoascii.git"
},
"keywords": [
"idna",
"punycode",
"unicode",
"uts46"
],
"author": "Manish Jethani <code@manishjethani.io>",
"license": "ISC",
"bugs": {
"url": "https://github.com/mjethani/domaintoascii/issues"
},
"homepage": "https://github.com/mjethani/domaintoascii#readme",
"engines": {
"node": ">=14.5.5",
"npm": ">=6.14.11"
},
"devDependencies": {
"c8": "^7.8.0",
"mocha": "^9.1.1",
"punycode": "^2.1.1"
}
}