rittenhop-dev/versions/5.94.2/node_modules/iso-639-3/package.json
2024-09-23 19:40:12 -04:00

80 lines
1.9 KiB
JSON

{
"name": "iso-639-3",
"version": "2.2.0",
"description": "ISO-639-3 codes in an accessible format",
"license": "MIT",
"keywords": [
"iso-639-3",
"iso",
"639",
"3",
"language",
"code",
"name",
"information"
],
"repository": "wooorm/iso-639-3",
"bugs": "https://github.com/wooorm/iso-639-3/issues",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
},
"author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
"contributors": [
"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
],
"main": "index.json",
"files": [
"index.json",
"to-1.json",
"to-2b.json",
"to-2t.json"
],
"dependencies": {},
"devDependencies": {
"bail": "^1.0.0",
"browserify": "^17.0.0",
"concat-stream": "^2.0.0",
"d3-dsv": "^2.0.0",
"prettier": "^2.0.0",
"remark-cli": "^9.0.0-alpha.1",
"remark-preset-wooorm": "^8.0.0",
"tape": "^5.0.0",
"tinyify": "^3.0.0",
"xo": "^0.33.0",
"yauzl": "^2.0.0"
},
"scripts": {
"generate": "node build",
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
"build-bundle": "browserify index.json -s iso6393 -o iso-639-3.js",
"build-mangle": "browserify index.json -s iso6393 -p tinyify -o iso-639-3.min.js",
"build": "npm run build-bundle && npm run build-mangle",
"test-api": "node test",
"test": "npm run format && npm run build && npm run test-api"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"semi": false,
"trailingComma": "none"
},
"xo": {
"prettier": true,
"esnext": false,
"rules": {
"unicorn/no-fn-reference-in-iterator": "off"
},
"ignores": [
"iso-639-3.js"
]
},
"remarkConfig": {
"plugins": [
"preset-wooorm"
]
}
}