Skip to main content
Module

x/npm2yarn/package.json

Convert npm CLI commands to yarn, and vice versa
Go to Latest
File
{ "name": "npm-to-yarn", "version": "1.2.1", "description": "Convert npm CLI commands to Yarn commands, and vice versa", "keywords": [ "string convert", "documentation", "yarn to npm" ], "main": "dist/npm-to-yarn.cjs", "module": "dist/npm-to-yarn.js", "typings": "dist/types/index.d.ts", "exports": { ".": { "types": "./dist/types/index.d.ts", "import": "./dist/npm-to-yarn.js", "require": "./dist/npm-to-yarn.cjs" } }, "sideEffects": false, "files": [ "dist" ], "author": "Ben Gubler <nebrelbug@gmail.com>", "funding": "https://github.com/nebrelbug/npm-to-yarn?sponsor=1", "repository": { "type": "git", "url": "git+https://github.com/nebrelbug/npm-to-yarn.git" }, "bugs": { "url": "https://github.com/nebrelbug/npm-to-yarn/issues" }, "license": "MIT", "engines": { "node": ">=6.0.0" }, "type": "module", "scripts": { "lint": "eslint src/*.ts test/*.spec.ts --ext .js,.ts", "prebuild": "rimraf dist", "build": "tsc --module es6 && rollup -c rollup.config.js", "start": "rollup -c rollup.config.js -w", "test": "jest --coverage", "test:watch": "jest --coverage --watch", "test:prod": "npm run lint && npm run test -- --no-cache", "deploy-docs": "ts-node tools/gh-pages-publish", "report-coverage": "cat ./coverage/lcov.info | coveralls", "commit": "git-cz", "travis-deploy-once": "travis-deploy-once --pro", "format": "prettier-standard --format '{src,test}/**/*.ts'" }, "lint-staged": { "{src,test}/**/*.ts": [ "prettier-standard --lint" ] }, "jest": { "transform": { ".(ts)": "ts-jest" }, "testEnvironment": "node", "testRegex": "(/test/.*|\\.(test|spec))\\.(ts|js)$", "moduleFileExtensions": [ "ts", "js" ], "coveragePathIgnorePatterns": [ "/node_modules/", "/test/" ], "coverageThreshold": { "global": { "branches": 80, "functions": 95, "lines": 95, "statements": 95 } }, "collectCoverageFrom": [ "src/*.ts" ] }, "standard": { "ignore": [ "dist" ] }, "prettier": { "semi": false, "singleQuote": true }, "devDependencies": { "@types/jest": "^29.2.4", "@types/node": "^18.11.15", "@typescript-eslint/eslint-plugin": "5", "@typescript-eslint/parser": "^5.46.1", "coveralls": "^3.1.1", "eslint": "^8.29.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-import": "2", "eslint-plugin-node": "11", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-promise": "6", "eslint-plugin-standard": "4", "jest": "^29.3.1", "lint-staged": "^13.1.0", "prettier-standard": "^16.4.1", "rimraf": "^3.0.2", "rollup": "^3.7.4", "rollup-plugin-typescript2": "^0.34.1", "travis-deploy-once": "^5.0.9", "ts-jest": "^29.0.3", "ts-node": "^10.9.1", "typescript": "^4.9.4" }}