shell bypass 403
{
"name": "concurrently",
"version": "7.0.0",
"description": "Run commands concurrently",
"main": "index.js",
"types": "dist/src/index.d.ts",
"type": "commonjs",
"bin": {
"concurrently": "./dist/bin/concurrently.js"
},
"engines": {
"node": "^12.20.0 || ^14.13.0 || >=16.0.0"
},
"exports": {
"import": "./index.mjs",
"require": "./index.js",
"default": "./index.js"
},
"scripts": {
"build": "tsc --build",
"postbuild": "chmod +x dist/bin/concurrently.js",
"clean": "tsc --build --clean",
"lint": "eslint . --ext js,ts --ignore-path .gitignore",
"prepublishOnly": "npm run build",
"report-coverage": "cat coverage/lcov.info | coveralls",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/open-cli-tools/concurrently.git"
},
"keywords": [
"bash",
"concurrent",
"parallel",
"concurrently",
"command",
"sh"
],
"author": "Kimmo Brunfeldt",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.0",
"date-fns": "^2.16.1",
"lodash": "^4.17.21",
"rxjs": "^6.6.3",
"spawn-command": "^0.0.2-1",
"supports-color": "^8.1.0",
"tree-kill": "^1.2.2",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.0",
"@types/supports-color": "^8.1.1",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"coveralls": "^3.1.0",
"eslint": "^7.17.0",
"jest": "^26.6.3",
"jest-create-mock-instance": "^1.1.0",
"ts-jest": "^26.5.6",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"files": [
"dist",
"index.js",
"index.mjs",
"!**/fixtures",
"!**/*.spec.js"
],
"jest": {
"preset": "ts-jest",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts",
"!src/index.ts"
],
"coveragePathIgnorePatterns": [
"/fixtures/",
"/node_modules/"
],
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist"
]
}
}