UNPKG

now-sync

Version:

A tool to help developers sync their JavaScript resources with ServiceNow.

78 lines (77 loc) 2.19 kB
{ "name": "now-sync", "author": "Kai Yao", "version": "1.0.13", "description": "A tool to help developers sync their JavaScript resources with ServiceNow.", "keywords": [ "servicenow", "cli", "sync", "service-now" ], "homepage": "https://github.com/theconnectiv/now-sync", "bugs": "https://github.com/theconnectiv/now-sync/issues", "license": "MIT", "main": "index.js", "repository": "theconnectiv/now-sync", "scripts": { "lint": "eslint \"**/*.js\"", "lint:fix": "yarn run lint --fix", "lint:time": "TIMING=1 npm run lint", "prettify": "prettier --ignore-path ./.eslintignore --write \"{**,!dist}/*.js\"", "test": "jest", "test:watch": "jest --watch", "git:changed": "git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD | grep --quiet package.json", "git:nochangedmsg": "echo \"package.json not changed, not running yarn.\"", "postcheckout": "npm run git:changed && yarn install || npm run git:nochangedmsg", "postmerge": "npm run git:changed && yarn install || npm run git:nochangedmsg", "precommit": "lint-staged" }, "bin": { "now": "bin/now" }, "dependencies": { "bluebird": "^3.7.2", "chalk": "^4.0.0", "chokidar": "^3.4.0", "inquirer": "^7.1.0", "js-yaml": "^3.13.1", "lodash": "^4.17.15", "mkdirp": "^1.0.4", "moment": "^2.24.0", "node-fetch": "^2.6.0", "ora": "^4.0.4", "path-to-regexp": "^6.1.0", "prettier": "^2.0.5", "roadrunner": "^1.1.0", "yargs": "^15.3.1" }, "devDependencies": { "eslint": "^6.8.0", "eslint-config-airbnb-base": "^14.1.0", "eslint-config-prettier": "^6.11.0", "eslint-plugin-import": "^2.20.2", "eslint-plugin-jest": "^23.8.2", "husky": "^4.2.5", "jest": "^25.4.0", "lint-staged": "^10.2.0", "rewire": "^5.0.0", "yarn": "^1.22.4" }, "engines": { "node": ">=8.0.0" }, "jest": { "verbose": false, "collectCoverage": true, "testEnvironment": "node" }, "lint-staged": { "*.js": [ "prettier --ignore-path ./.eslintignore --write", "eslint --fix \"**/*.js\"", "jest --passWithNoTests", "git add" ] } }