UNPKG

make-synchronized

Version:

[![Build Status][github_actions_badge]][github_actions_link] [![Coverage][coveralls_badge]][coveralls_link] [![Npm Version][package_version_badge]][package_link] [![MIT License][license_badge]][license_link]

93 lines (92 loc) 2.71 kB
{ "name": "make-synchronized", "version": "0.2.8", "homepage": "https://github.com/fisker/make-synchronized#readme", "bugs": { "url": "https://github.com/fisker/make-synchronized/issues" }, "repository": "fisker/make-synchronized", "funding": "https://github.com/fisker/make-synchronized?sponsor=1", "license": "MIT", "author": { "name": "fisker Cheung", "email": "lionkay@gmail.com", "url": "https://www.fiskercheung.com/" }, "sideEffects": false, "type": "module", "exports": { ".": { "require": "./index.cjs", "default": "./index.mjs" } }, "main": "index.js", "files": [ "index.mjs", "index.cjs", "worker.mjs" ], "scripts": { "build": "node scripts/build.js", "clean": "run-p \"clean:*\"", "clean:dist": "del-cli dist", "dist": "run-p \"dist:*\"", "dist:npm": "np --yolo --no-yarn", "format": "run-p \"format:*\"", "format:eslint": "yarn lint:eslint --fix", "format:markdown": "markdownlint-cli2 --fix", "format:package-json": "sort-package-json \"package.json\" \"packages/*/package.json\"", "format:prettier": "yarn lint:prettier --write", "lint": "run-p \"lint:*\"", "lint:eslint": "eslint \"**/*.{js,jsx,mjs,cjs,vue}\"", "lint:markdown": "markdownlint-cli2", "lint:package-json": "yarn run format:package-json --check", "lint:prettier": "prettier . --check", "lint:types": "tsc", "test": "run-s test:development test:production-esm test:production-cjs", "test:development": "node --test", "test:production-esm": "yarn build && cross-env DIST_TEST_TYPE=esm node --test", "test:production-cjs": "yarn build && cross-env DIST_TEST_TYPE=cjs node --test", "test-coverage": "c8 yarn test", "release": "run-s build lint format dist", "prepare": "husky" }, "c8": { "all": true, "include": [ "source" ], "reporter": [ "lcov", "text" ] }, "devDependencies": { "@fisker/eslint-config": "12.1.0", "@fisker/lint-staged-config": "3.3.2", "@fisker/markdownlint-cli2-config": "0.0.3", "@fisker/prettier-config": "5.1.1", "@types/node": "20.11.16", "c8": "9.1.0", "cross-env": "7.0.3", "del-cli": "5.1.0", "esbuild": "0.20.0", "eslint": "8.56.0", "execa": "8.0.1", "husky": "9.0.10", "lint-staged": "15.2.2", "markdownlint-cli2": "0.12.1", "npm-run-all": "4.1.5", "prettier": "3.2.5", "sort-package-json": "2.7.0", "strip-ansi": "7.1.0", "tempy": "3.1.0", "typescript": "5.3.3" }, "packageManager": "yarn@4.0.2", "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" } }