npx-run
Version:
Easily run scripts using npx.
74 lines (73 loc) • 2.21 kB
JSON
{
"name": "npx-run",
"description": "Easily run scripts using npx.",
"keywords": [
"npx",
"npm-scripts",
"run",
"scripts",
"build",
"tool",
"cli"
],
"version": "2.1.2",
"engines": {
"node": ">=10.0.0"
},
"private": false,
"repository": {
"type": "git",
"url": "git@github.com:nearmap/npx-run.git"
},
"scripts": {
"default": "run clean test",
"clean": "rimraf ./build",
"build": "run build:* create-pkg-json build/pkg/",
"build:babel": "babel src --out-dir build/pkg --ignore '**/*.test.js'",
"build:files": "cp ./README.md ./LICENSE build/pkg/",
"test": "run lint jest",
"lint": "run lint:*",
"lint:js": "eslint --report-unused-disable-directives --ignore-path .gitignore .",
"lint:md": "remark --no-stdout --use remark-lint *.md",
"jest": "jest --runInBand --no-cache ",
"cd": "run clean build release",
"release": "semantic-release"
},
"bugs": "https://github.com/nearmap/npx-run/issues",
"homepage": "https://github.com/nearmap/npx-run",
"bin": {
"run": "./cli.js",
"npx-run": "./cli.js"
},
"main": "./run.js",
"dependencies": {
"libnpx": "^10.2.0",
"string-argv": "^0.1.1",
"chalk": "^2.4.1"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"@nearmap/eslint-config-base": "^1.0.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.5.0",
"jest-cli": "^23.5.0",
"npx-run": "^2.1.0",
"remark-cli": "^5.0.0",
"remark-lint": "^6.0.1",
"remark-preset-lint-recommended": "^3.0.2",
"rimraf": "^2.6.2",
"semantic-release": "^15.9.14"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}