{
  "name": "synp",
  "version": "1.9.14",
  "description": "Convert yarn.lock to package-lock.json and vice versa",
  "keywords": [
    "yarn",
    "package-lock",
    "package-lock.json",
    "yarn.lock",
    "convert",
    "transform",
    "translate"
  ],
  "main": "index.js",
  "bin": {
    "synp": "./cli/synp.js"
  },
  "scripts": {
    "test": "yarn test:lint && yarn cover:unit && yarn test:integration && yarn test:deps",
    "test:lint": "standard",
    "test:unit": "tape ./test/*.spec.js",
    "test:integration": "cli/synp.js -s yarn.lock && rimraf package-lock.json",
    "test:depcheck": "npm_config_yes=true npx depcheck --ignores @semantic-release/*,semantic-release",
    "test:depaudit": "yarn audit --level=moderate --groups=dependencies; [[ $? -ge 4 ]] && exit 1 || exit 0",
    "test:depauditfix": "npm_config_yes=true npx yarn-audit-fix --audit-level=moderate",
    "test:deps": "yarn test:depcheck && yarn test:depaudit",
    "cover:unit": "nyc --reporter=lcov --reporter=text yarn test:unit",
    "postupdate": "yarn && yarn test:depauditfix && yarn test"
  },
  "author": "Aram Drevekenin <grimsniffer@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/imsnif/synp.git"
  },
  "dependencies": {
    "@yarnpkg/lockfile": "^1.1.0",
    "fast-glob": "^3.3.2",
    "colors": "1.4.0",
    "commander": "^7.2.0",
    "eol": "^0.10.0",
    "lodash": "4.17.21",
    "nmtree": "^1.0.6",
    "semver": "^7.6.3",
    "sort-object-keys": "^1.1.3"
  },
  "devDependencies": {
    "nyc": "15.1.0",
    "sinon": "^9.2.4",
    "standard": "^16.0.4",
    "tape": "^5.9.0",
    "rimraf": "^3.0.2"
  }
}
