mirror of
https://github.com/shelljs/shelljs.git
synced 2026-01-18 16:03:37 +00:00
58 lines
1.4 KiB
JSON
58 lines
1.4 KiB
JSON
{
|
|
"name": "shelljs",
|
|
"version": "0.7.1",
|
|
"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",
|
|
"release:major": "shelljs-release major",
|
|
"release:minor": "shelljs-release minor",
|
|
"release:patch": "shelljs-release patch"
|
|
},
|
|
"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",
|
|
"shelljs-release": "^0.2.0",
|
|
"travis-check-changes": "^0.2.0"
|
|
},
|
|
"optionalDependencies": {},
|
|
"engines": {
|
|
"node": ">=0.11.0",
|
|
"iojs": "*"
|
|
}
|
|
}
|