aboutsummaryrefslogtreecommitdiff
path: root/node_modules/y18n/package.json
diff options
context:
space:
mode:
authorJoel Kronqvist <joel.h.kronqvist@gmail.com>2022-03-05 19:02:27 +0200
committerJoel Kronqvist <joel.h.kronqvist@gmail.com>2022-03-05 19:02:27 +0200
commit5d309ff52cd399a6b71968a6b9a70c8ac0b98981 (patch)
tree360f7eb50f956e2367ef38fa1fc6ac7ac5258042 /node_modules/y18n/package.json
parentb500a50f1b97d93c98b36ed9a980f8188d648147 (diff)
downloadLYLLRuoka-5d309ff52cd399a6b71968a6b9a70c8ac0b98981.tar.gz
LYLLRuoka-5d309ff52cd399a6b71968a6b9a70c8ac0b98981.zip
Added node_modules for the updating to work properly.
Diffstat (limited to 'node_modules/y18n/package.json')
-rw-r--r--node_modules/y18n/package.json70
1 files changed, 70 insertions, 0 deletions
diff --git a/node_modules/y18n/package.json b/node_modules/y18n/package.json
new file mode 100644
index 0000000..4e5c1ca
--- /dev/null
+++ b/node_modules/y18n/package.json
@@ -0,0 +1,70 @@
+{
+ "name": "y18n",
+ "version": "5.0.8",
+ "description": "the bare-bones internationalization library used by yargs",
+ "exports": {
+ ".": [
+ {
+ "import": "./index.mjs",
+ "require": "./build/index.cjs"
+ },
+ "./build/index.cjs"
+ ]
+ },
+ "type": "module",
+ "module": "./build/lib/index.js",
+ "keywords": [
+ "i18n",
+ "internationalization",
+ "yargs"
+ ],
+ "homepage": "https://github.com/yargs/y18n",
+ "bugs": {
+ "url": "https://github.com/yargs/y18n/issues"
+ },
+ "repository": "yargs/y18n",
+ "license": "ISC",
+ "author": "Ben Coe <bencoe@gmail.com>",
+ "main": "./build/index.cjs",
+ "scripts": {
+ "check": "standardx **/*.ts **/*.cjs **/*.mjs",
+ "fix": "standardx --fix **/*.ts **/*.cjs **/*.mjs",
+ "pretest": "rimraf build && tsc -p tsconfig.test.json && cross-env NODE_ENV=test npm run build:cjs",
+ "test": "c8 --reporter=text --reporter=html mocha test/*.cjs",
+ "test:esm": "c8 --reporter=text --reporter=html mocha test/esm/*.mjs",
+ "posttest": "npm run check",
+ "coverage": "c8 report --check-coverage",
+ "precompile": "rimraf build",
+ "compile": "tsc",
+ "postcompile": "npm run build:cjs",
+ "build:cjs": "rollup -c",
+ "prepare": "npm run compile"
+ },
+ "devDependencies": {
+ "@types/node": "^14.6.4",
+ "@wessberg/rollup-plugin-ts": "^1.3.1",
+ "c8": "^7.3.0",
+ "chai": "^4.0.1",
+ "cross-env": "^7.0.2",
+ "gts": "^3.0.0",
+ "mocha": "^8.0.0",
+ "rimraf": "^3.0.2",
+ "rollup": "^2.26.10",
+ "standardx": "^7.0.0",
+ "ts-transform-default-export": "^1.0.2",
+ "typescript": "^4.0.0"
+ },
+ "files": [
+ "build",
+ "index.mjs",
+ "!*.d.ts"
+ ],
+ "engines": {
+ "node": ">=10"
+ },
+ "standardx": {
+ "ignore": [
+ "build"
+ ]
+ }
+}