Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json « call-limit « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f2c7f6d33c3f1975a478ecf5e2076cc64b7ba3b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
  "name": "call-limit",
  "version": "1.1.1",
  "description": "Limit the number of simultaneous calls to an async function",
  "main": "call-limit.js",
  "scripts": {
    "test": "tap test/*.js",
    "prerelease": "npm t",
    "release": "standard-version -s",
    "postrelease": "npm publish && git push --follow-tags",
    "pretest": "iarna-standard",
    "update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'",
    "update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/iarna/call-limit"
  },
  "author": "Rebecca Turner <me@re-becca.org>",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/iarna/call-limit/issues"
  },
  "homepage": "https://npmjs.com/packages/call-limit",
  "dependencies": {},
  "devDependencies": {
    "tap": "^14.2.0",
    "weallbehave": "*",
    "weallcontribute": "*",
    "@iarna/standard": "*",
    "standard-version": "*"
  },
  "files": [
    "call-limit.js"
  ]
}