shelljs/package.json
2016-06-17 11:22:38 -07:00

54 lines
1.2 KiB
JSON

{
"name": "shelljs",
"version": "0.7.0",
"description": "Portable Unix shell commands for Node.js",
"keywords": [
"shelljs",
"bash",
"unix",
"shell",
"makefile",
"make",
"jake",
"synchronous"
],
"contributors": [
"Ari Porad <ari@ariporad.com> (http://ariporad.com/)",
"Nate Fischer <ntfschr@gmail.com> (https://github.com/nfischer)"
],
"repository": {
"type": "git",
"url": "git://github.com/shelljs/shelljs.git"
},
"license": "BSD-3-Clause",
"homepage": "http://github.com/shelljs/shelljs",
"main": "./shell.js",
"scripts": {
"posttest": "npm run lint",
"test": "node scripts/run-tests",
"gendocs": "node scripts/generate-docs",
"lint": "jshint .",
"after-travis": "travis-check-changes",
"changelog": "shelljs-changelog"
},
"bin": {
"shjs": "./bin/shjs"
},
"dependencies": {
"glob": "^7.0.0",
"interpret": "^1.0.0",
"rechoir": "^0.6.2"
},
"devDependencies": {
"coffee-script": "^1.10.0",
"jshint": "^2.9.2",
"shelljs-changelog": "^0.2.0",
"travis-check-changes": "^0.2.0"
},
"optionalDependencies": {},
"engines": {
"node": ">=0.11.0",
"iojs": "*"
}
}