| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {
- "name": "@e22m4u/js-spy",
- "version": "0.3.0",
- "description": "Утилита слежения за вызовом функций и методов для JavaScript",
- "author": "Mikhail Evstropov <e22m4u@yandex.ru>",
- "license": "MIT",
- "keywords": [
- "spy",
- "call",
- "test",
- "unit"
- ],
- "homepage": "https://gitrepos.ru/e22m4u/js-spy",
- "repository": {
- "type": "git",
- "url": "git+https://gitrepos.ru/e22m4u/js-spy.git"
- },
- "type": "module",
- "module": "./src/index.js",
- "main": "./dist/cjs/index.cjs",
- "exports": {
- "import": "./src/index.js",
- "require": "./dist/cjs/index.cjs"
- },
- "engines": {
- "node": ">=12"
- },
- "scripts": {
- "lint": "eslint ./src",
- "lint:fix": "eslint ./src --fix",
- "format": "prettier --write \"./src/**/*.js\"",
- "test": "npm run lint && c8 --reporter=text-summary mocha",
- "test:coverage": "npm run lint && c8 --reporter=text mocha",
- "build:cjs": "rimraf ./dist/cjs && node build-cjs.js",
- "prepare": "husky"
- },
- "devDependencies": {
- "@commitlint/cli": "~20.1.0",
- "@commitlint/config-conventional": "~20.0.0",
- "@eslint/js": "~9.39.1",
- "c8": "~10.1.3",
- "chai": "~6.2.1",
- "esbuild": "~0.27.0",
- "eslint": "~9.39.1",
- "eslint-config-prettier": "~10.1.8",
- "eslint-plugin-chai-expect": "~3.1.0",
- "eslint-plugin-import": "^2.32.0",
- "eslint-plugin-jsdoc": "^61.4.1",
- "eslint-plugin-mocha": "~11.2.0",
- "globals": "~16.5.0",
- "husky": "~9.1.7",
- "mocha": "~11.7.5",
- "prettier": "~3.7.3",
- "rimraf": "~6.1.2"
- }
- }
|