time-to-botec

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

package.json (1914B)


      1 {
      2   "name": "minimist",
      3   "version": "1.2.7",
      4   "description": "parse argument options",
      5   "main": "index.js",
      6   "devDependencies": {
      7     "@ljharb/eslint-config": "^21.0.0",
      8     "aud": "^2.0.1",
      9     "auto-changelog": "^2.4.0",
     10     "eslint": "=8.8.0",
     11     "in-publish": "^2.0.1",
     12     "npmignore": "^0.3.0",
     13     "nyc": "^10.3.2",
     14     "safe-publish-latest": "^2.0.0",
     15     "tape": "^5.6.1"
     16   },
     17   "scripts": {
     18     "prepack": "npmignore --auto --commentLines=auto",
     19     "prepublishOnly": "safe-publish-latest",
     20     "prepublish": "not-in-publish || npm run prepublishOnly",
     21     "lint": "eslint --ext=js,mjs .",
     22     "pretest": "npm run lint",
     23     "tests-only": "nyc tape test/*.js",
     24     "test": "npm run tests-only",
     25     "posttest": "aud --production",
     26     "version": "auto-changelog && git add CHANGELOG.md",
     27     "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
     28   },
     29   "testling": {
     30     "files": "test/*.js",
     31     "browsers": [
     32       "ie/6..latest",
     33       "ff/5",
     34       "firefox/latest",
     35       "chrome/10",
     36       "chrome/latest",
     37       "safari/5.1",
     38       "safari/latest",
     39       "opera/12"
     40     ]
     41   },
     42   "repository": {
     43     "type": "git",
     44     "url": "git://github.com/minimistjs/minimist.git"
     45   },
     46   "homepage": "https://github.com/minimistjs/minimist",
     47   "keywords": [
     48     "argv",
     49     "getopt",
     50     "parser",
     51     "optimist"
     52   ],
     53   "author": {
     54     "name": "James Halliday",
     55     "email": "mail@substack.net",
     56     "url": "http://substack.net"
     57   },
     58   "funding": {
     59     "url": "https://github.com/sponsors/ljharb"
     60   },
     61   "license": "MIT",
     62   "auto-changelog": {
     63     "output": "CHANGELOG.md",
     64     "template": "keepachangelog",
     65     "unreleased": false,
     66     "commitLimit": false,
     67     "backfillLimit": false,
     68     "hideCredit": true
     69   },
     70   "publishConfig": {
     71     "ignore": [
     72       ".github/workflows"
     73     ]
     74   }
     75 }