iso-639-2
Version:
ISO-639-2 codes in an accessible format
97 lines (96 loc) • 2.37 kB
JSON
{
"name": "iso-639-2",
"version": "3.0.2",
"description": "ISO-639-2 codes in an accessible format",
"license": "MIT",
"keywords": [
"iso-639-2",
"iso",
"639",
"2",
"language",
"code",
"name",
"information"
],
"repository": "wooorm/iso-639-2",
"bugs": "https://github.com/wooorm/iso-639-2/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)"
],
"sideEffects": false,
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"files": [
"2.d.ts",
"2.js",
"2b-to-1.d.ts",
"2b-to-1.js",
"2b-to-2t.d.ts",
"2b-to-2t.js",
"2t-to-1.d.ts",
"2t-to-1.js",
"2t-to-2b.d.ts",
"2t-to-2b.js",
"index.d.ts",
"index.js"
],
"devDependencies": {
"@types/concat-stream": "^2.0.0",
"@types/d3-dsv": "^3.0.0",
"@types/node": "^18.0.0",
"@types/tape": "^4.0.0",
"bail": "^2.0.0",
"c8": "^7.0.0",
"concat-stream": "^2.0.0",
"d3-dsv": "^3.0.0",
"prettier": "^2.0.0",
"remark-cli": "^11.0.0",
"remark-preset-wooorm": "^9.0.0",
"rimraf": "^3.0.0",
"tape": "^5.0.0",
"type-coverage": "^2.0.0",
"typescript": "^4.0.0",
"xo": "^0.51.0"
},
"scripts": {
"generate": "node build.js",
"prepublishOnly": "npm run build && npm run format",
"build": "rimraf \"*.d.ts\" && tsc && type-coverage",
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
"test-api": "node --conditions development test.js",
"test-coverage": "c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov npm run test-api",
"test": "npm run generate && npm run build && npm run format && npm run test-coverage"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"semi": false,
"trailingComma": "none"
},
"xo": {
"prettier": true,
"rules": {
"unicorn/numeric-separators-style": "off"
}
},
"remarkConfig": {
"plugins": [
"preset-wooorm"
]
},
"typeCoverage": {
"atLeast": 100,
"detail": true,
"strict": true,
"ignoreCatch": true
}
}