1234567891011121314151617181920212223242526272829 |
- {
- "name": "cmd-shim",
- "version": "3.0.3",
- "description": "Used in npm for command line application support",
- "scripts": {
- "test": "tap test/*.js --100",
- "snap": "TAP_SNAPSHOT=1 tap test/*.js --100",
- "preversion": "npm test",
- "postversion": "npm publish",
- "postpublish": "git push origin --follow-tags"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/npm/cmd-shim.git"
- },
- "license": "ISC",
- "dependencies": {
- "graceful-fs": "^4.1.2",
- "mkdirp": "~0.5.0"
- },
- "devDependencies": {
- "rimraf": "~2.2.8",
- "tap": "^12.7.0"
- },
- "files": [
- "index.js",
- "lib"
- ]
- }
|