mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.8 KiB
72 lines
1.8 KiB
{
|
|
"name": "shx",
|
|
"version": "0.4.0",
|
|
"description": "Portable Shell Commands for Node",
|
|
"bin": {
|
|
"shx": "lib/cli.js"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"check-node-support": "node scripts/check-node-support",
|
|
"prebuild": "rimraf lib",
|
|
"build": "babel src -d lib",
|
|
"lint": "eslint .",
|
|
"prepublish": "npm run build",
|
|
"posttest": "npm run lint",
|
|
"release:major": "shelljs-release major",
|
|
"release:minor": "shelljs-release minor",
|
|
"release:patch": "shelljs-release patch",
|
|
"changelog": "shelljs-changelog",
|
|
"test": "nyc --reporter=text --reporter=lcov mocha"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/shelljs/shx.git"
|
|
},
|
|
"keywords": [
|
|
"shelljs",
|
|
"shell",
|
|
"unix",
|
|
"bash",
|
|
"sh",
|
|
"exec",
|
|
"cli",
|
|
"zsh"
|
|
],
|
|
"contributors": [
|
|
"Ari Porad <ari@ariporad.com> (http://ariporad.com/)",
|
|
"Levi Thomason <me@levithomason.com> (https://github.com/levithomason)",
|
|
"Nate Fischer <ntfschr@gmail.com>"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/shelljs/shx/issues"
|
|
},
|
|
"homepage": "https://github.com/shelljs/shx#readme",
|
|
"devDependencies": {
|
|
"babel-cli": "^6.6.5",
|
|
"babel-preset-env": "^1.7.0",
|
|
"babel-register": "^6.7.2",
|
|
"eslint": "^8.57.1",
|
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
"eslint-import-resolver-node": "0.3.7",
|
|
"eslint-plugin-import": "^2.31.0",
|
|
"js-yaml": "^4.1.0",
|
|
"mocha": "^11.1.0",
|
|
"nyc": "^17.1.0",
|
|
"rimraf": "^5.0.10",
|
|
"shelljs-changelog": "^0.2.6",
|
|
"shelljs-plugin-open": "^0.3.0",
|
|
"shelljs-release": "^0.5.3",
|
|
"should": "^13.2.3"
|
|
},
|
|
"dependencies": {
|
|
"minimist": "^1.2.8",
|
|
"shelljs": "^0.9.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|
|
|