rittenhop-ghost/versions/5.94.2/node_modules/punycode2/package.json

96 lines
2.0 KiB
JSON

{
"name": "punycode2",
"version": "1.0.1",
"description": "Modular version of punycode package",
"keywords": [
"punycode",
"unicode",
"idn",
"idna",
"dns",
"url",
"domain"
],
"repository": "medikoo/punycode2",
"devDependencies": {
"eslint": "^8.12.0",
"eslint-config-medikoo": "^4.1.2",
"git-list-updated": "^1.2.1",
"github-release-from-cc-changelog": "^2.2.1",
"husky": "^4.3.8",
"lint-staged": "^12.3.7",
"nyc": "^15.1.0",
"prettier-elastic": "^2.2.1",
"qunit-extras": "^1.5.0",
"qunitjs": "~1.11.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint"
],
"*.{css,html,js,json,md,yaml,yml}": [
"prettier -c"
]
},
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"overrides": [
{
"files": [
"*.md",
"*.yml"
],
"options": {
"tabWidth": 2
}
}
]
},
"eslintConfig": {
"extends": "medikoo/es5",
"root": true,
"overrides": [
{
"files": "test/**/*.js",
"env": {
"qunit": true
}
}
]
},
"nyc": {
"all": true,
"exclude": [
".github",
"coverage/**",
"test/**",
"*.config.js"
],
"reporter": [
"lcov",
"html",
"text-summary"
]
},
"scripts": {
"coverage": "nyc npm test",
"lint": "eslint --ignore-path=.gitignore .",
"lint:updated": "pipe-git-updated --base=main --ext=js -- eslint --ignore-pattern '!*'",
"prettier-check": "prettier -c --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"",
"prettier-check:updated": "pipe-git-updated --base=main --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier -c",
"prettify": "prettier --write --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"",
"prettify:updated": "pipe-git-updated ---base=main -ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier --write",
"test": "node test/index.js"
},
"engines": {
"node": ">=0.10"
},
"license": "MIT"
}