UNPKG

npm-utils

Version:
110 lines 2.79 kB
{ "name": "npm-utils", "description": "Async NPM shell commands", "version": "2.0.3", "author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>", "bin": { "set-auth-token-var-name": "bin/set-auth-token-var-name.js" }, "bugs": { "url": "https://github.com/bahmutov/npm-utils/issues" }, "config": { "pre-git": { "commit-msg": "simple", "pre-commit": [ "npm run build", "npm test" ], "pre-push": [ "npm run size" ], "post-commit": [ "npm run exact-semver" ], "post-merge": [] } }, "contributors": [ "Jayson Harshbarger http://hypercubed.com/" ], "dependencies": { "chdir-promise": "0.6.2", "check-more-types": "2.24.0", "cross-spawn": "6.0.5", "debug": "3.1.0", "del": "3.0.0", "execa": "0.10.0", "ggit": "2.4.2", "lazy-ass": "1.6.0", "local-or-home-npmrc": "1.1.0", "q": "2.0.3", "registry-url": "3.1.0", "repo-url": "1.0.1", "verbal-expressions": "0.3.0" }, "devDependencies": { "codacy-coverage": "2.1.0", "exact-semver": "1.2.0", "git-issues": "1.3.1", "github-post-release": "1.13.1", "grunt": "0.4.5", "grunt-bump": "0.8.0", "grunt-cli": "1.2.0", "grunt-complexity": "0.4.0", "grunt-filenames": "0.4.0", "grunt-nice-package": "0.10.4", "gt": "0.10.0", "matchdep": "2.0.0", "mocha": "5.0.4", "next-update-travis": "1.7.1", "pkgfiles": "2.3.2", "pre-git": "3.17.1", "proxyquire": "2.0.1", "semantic-release": "6.3.6", "standard": "11.0.1", "temp": "0.8.3", "tmp-sync": "1.1.2" }, "engines": { "node": ">0.4.0" }, "files": [ "src/", "!src/test", "!src/*-spec.js", "bin" ], "homepage": "https://github.com/bahmutov/npm-utils", "keywords": [ "async", "command", "npm", "shell" ], "license": "MIT", "main": "src/index.js", "release": { "generateNotes": "github-post-release", "analyzeCommits": "simple-commit-message" }, "repository": { "type": "git", "url": "https://github.com/bahmutov/npm-utils.git" }, "scripts": { "build": "grunt", "commit": "git-issues && commit-wizard", "coverage-codacy": "cat cover/lcov.info | ./node_modules/.bin/codacy-coverage -v -d", "exact-semver": "exact-semver", "issues": "git-issues", "lint": "standard --verbose --fix src/*.js", "pkgfiles": "pkgfiles", "posttest": "npm run unit", "pretest": "npm run lint", "semantic-release": "semantic-release pre && npm publish && semantic-release post", "size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";", "test": "gt src/test/*.js --output", "unit": "mocha --timeout 30000 src/*-spec.js" } }