12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- {
- "name": "npm-lifecycle",
- "version": "3.1.5",
- "description": "JavaScript package lifecycle hook runner",
- "main": "index.js",
- "scripts": {
- "prerelease": "npm t",
- "postrelease": "npm publish && git push --follow-tags",
- "pretest": "standard",
- "release": "standard-version -s",
- "test": "tap -J --cov test/*.js",
- "snap": "TAP_SNAPSHOT=1 npm test"
- },
- "repository": {
- "type": "git",
- "url": "git://github.com/npm/lifecycle.git"
- },
- "keywords": [
- "npm",
- "lifecycle",
- "hook",
- "runner"
- ],
- "author": "Mike Sherov",
- "license": "Artistic-2.0",
- "bugs": {
- "url": "https://github.com/npm/lifecycle/issues"
- },
- "homepage": "https://github.com/npm/lifecycle#readme",
- "dependencies": {
- "byline": "^5.0.0",
- "graceful-fs": "^4.1.15",
- "node-gyp": "^5.0.2",
- "resolve-from": "^4.0.0",
- "slide": "^1.1.6",
- "uid-number": "0.0.6",
- "umask": "^1.1.0",
- "which": "^1.3.1"
- },
- "devDependencies": {
- "nyc": "^14.1.0",
- "sinon": "^7.2.3",
- "standard": "^12.0.1",
- "standard-version": "^4.4.0",
- "tap": "^12.7.0"
- },
- "files": [
- "index.js",
- "lib/spawn.js",
- "node-gyp-bin"
- ]
- }
|