astro-ghostcms/.pnpm-store/v3/files/c1/e08095dab62a65712da831c7c1e...

77 lines
1.4 KiB
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
{
"name": "language-tags",
"version": "1.0.9",
"implements": [
"CommonJS/Modules/1.0"
],
"description": "Work with IANA language tags.",
"main": "lib/index.js",
"homepage": "https://github.com/mattcg/language-tags",
"author": "Matthew Caruana Galizia <mattcg@gmail.com>",
"repository": {
"type": "git",
"url": "git://github.com/mattcg/language-tags.git"
},
"bugs": {
"url": "https://github.com/mattcg/language-tags/issues"
},
"license": "MIT",
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "rimraf lib && mkdirp lib",
"build": "babel src -d lib",
"lint": "eslint --ext=js,mjs .",
"tests-only": "nyc mocha --recursive test",
"pretest": "npm run lint",
"test": "npm run tests-only"
},
"keywords": [
"iana",
"bcp47",
"subtags",
"rfc5646",
"m17n",
"multilingualization"
],
"dependencies": {
"language-subtag-registry": "^0.3.20"
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"coveralls": "^3.1.1",
"eslint": "^8.47.0",
"mkdirp": "^0.5.6",
"mocha": "^3.5.3",
"nyc": "^10.3.2",
"rimraf": "^2.7.1"
},
"files": [
"/lib"
],
"engines": {
"node": ">=0.10"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2022,
"sourceType": "script"
},
"env": {
"node": true
},
"ignorePatterns": [
"!.babelrc.js"
],
"overrides": [
{
"files": "test/**",
"globals": {
"suite": false,
"test": false
}
}
]
}
}