| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "name": "@e22m4u/js-format",
- "version": "0.1.0",
- "description": "Extended version of the format utility for Node.js",
- "type": "module",
- "main": "src/index.js",
- "scripts": {
- "lint": "tsc && eslint .",
- "lint:fix": "tsc && eslint . --fix",
- "format": "prettier --write \"./src/**/*.js\"",
- "test": "npm run lint && c8 --reporter=text-summary mocha",
- "test:coverage": "npm run lint && c8 --reporter=text mocha",
- "prepare": "husky"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/e22m4u/js-format.git"
- },
- "keywords": [
- "format",
- "printf",
- "errorf"
- ],
- "author": "e22m4u <e22m4u@yandex.ru>",
- "license": "MIT",
- "homepage": "https://github.com/e22m4u/js-format",
- "devDependencies": {
- "@commitlint/cli": "~19.5.0",
- "@commitlint/config-conventional": "~19.5.0",
- "@eslint/js": "~9.12.0",
- "c8": "~10.1.2",
- "chai": "~5.1.1",
- "eslint": "~9.12.0",
- "eslint-config-prettier": "~9.1.0",
- "eslint-plugin-chai-expect": "~3.1.0",
- "eslint-plugin-mocha": "~10.5.0",
- "globals": "~15.10.0",
- "husky": "~9.1.6",
- "mocha": "~10.7.3",
- "prettier": "~3.3.3",
- "typescript": "~5.6.2"
- }
- }
|