time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

package.json (1043B)


      1 {
      2   "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)",
      3   "name": "which",
      4   "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.",
      5   "version": "2.0.2",
      6   "repository": {
      7     "type": "git",
      8     "url": "git://github.com/isaacs/node-which.git"
      9   },
     10   "main": "which.js",
     11   "bin": {
     12     "node-which": "./bin/node-which"
     13   },
     14   "license": "ISC",
     15   "dependencies": {
     16     "isexe": "^2.0.0"
     17   },
     18   "devDependencies": {
     19     "mkdirp": "^0.5.0",
     20     "rimraf": "^2.6.2",
     21     "tap": "^14.6.9"
     22   },
     23   "scripts": {
     24     "test": "tap",
     25     "preversion": "npm test",
     26     "postversion": "npm publish",
     27     "prepublish": "npm run changelog",
     28     "prechangelog": "bash gen-changelog.sh",
     29     "changelog": "git add CHANGELOG.md",
     30     "postchangelog": "git commit -m 'update changelog - '${npm_package_version}",
     31     "postpublish": "git push origin --follow-tags"
     32   },
     33   "files": [
     34     "which.js",
     35     "bin/node-which"
     36   ],
     37   "tap": {
     38     "check-coverage": true
     39   },
     40   "engines": {
     41     "node": ">= 8"
     42   }
     43 }