{ "name": "@chrisgavin/safe-which", "version": "1.0.2", "description": "A NodeJS library to guard against Windows binary planting attacks.", "license": "MIT", "homepage": "https://github.com/chrisgavin/safe-which/", "publishConfig": { "access": "public" }, "main": "./build/index.js", "types": "./build/index.d.ts", "scripts": { "build": "tsc", "pretest": "npm install && npm run build", "test": "ava --verbose --serial ./src/**", "prepublishOnly": "npm install && npm run build && npm version --allow-same-version=true --git-tag-version=false ${GITHUB_REF#refs/tags/}" }, "dependencies": {}, "devDependencies": { "@ava/typescript": "^1.1.1", "@types/node": "^14.14.7", "ava": "^3.13.0", "typescript": "^3.8.3" }, "ava": { "typescript": { "rewritePaths": { "./src/": "./build/" } } } }