UNPKG

2.84 kBJSONView Raw
1{
2 "name": "async-agent",
3 "version": "0.4.6",
4 "description": "A javascript library of async functions",
5 "type": "module",
6 "main": "index.js",
7 "files": [
8 "/src"
9 ],
10 "sideEffects": false,
11 "scripts": {
12 "test": "karma start --single-run",
13 "test-watch": "karma start",
14 "patch": "npm version patch && npm publish",
15 "minor": "npm version minor && npm publish",
16 "major": "npm version major && npm publish",
17 "preversion": "npm test && npm run docs && git add --all && git diff --staged --quiet || git commit -m \"Updating docs\"",
18 "postpublish": "git push --follow-tags",
19 "deps": "ncu -u && npm install",
20 "deps-commit": "npm run deps && git add --all && git diff --staged --quiet || git commit -m \"Updating dependencies\"",
21 "deps-patch": "npm run deps-commit && npm run patch",
22 "docs": "exec-each src/**/*.js --out docs/{basefile}.md jsdoc2md -- {path} -t node_modules/dmd-readable/docs.hbs --plugin dmd-readable && jsdoc2md index.js src/**/*.js > README.md -t node_modules/dmd-readable/overview.hbs --plugin node_modules/dmd-readable/overview-plugin.js"
23 },
24 "badges": {
25 "npm": {
26 "image": "https://img.shields.io/npm/v/{{name}}.svg",
27 "url": "https://npmjs.com/package/{{name}}"
28 },
29 "build": {
30 "base": "https://travis-ci.org/DarrenPaulWright/",
31 "image": "{{name}}.svg?branch=master",
32 "url": "{{name}}"
33 },
34 "coverage": {
35 "base": "https://coveralls.io/",
36 "image": "repos/github/DarrenPaulWright/{{name}}/badge.svg?branch=master",
37 "url": "github/DarrenPaulWright/{{name}}?branch=master"
38 },
39 "deps": {
40 "image": "https://david-dm.org/darrenpaulwright/{{name}}.svg",
41 "url": "https://david-dm.org/darrenpaulwright/{{name}}"
42 },
43 "size": {
44 "base": "https://packagephobia.now.sh/",
45 "image": "badge?p={{name}}",
46 "url": "result?p={{name}}"
47 },
48 "vulnerabilities": {
49 "base": "https://snyk.io/test/github/DarrenPaulWright/{{name}}",
50 "image": "/badge.svg?targetFile=package.json",
51 "url": "?targetFile=package.json"
52 },
53 "license": {
54 "image": "https://img.shields.io/github/license/DarrenPaulWright/{{name}}.svg",
55 "url": "https://npmjs.com/package/{{name}}/LICENSE.md"
56 }
57 },
58 "repository": {
59 "type": "git",
60 "url": "git+https://github.com/DarrenPaulWright/async-agent.git"
61 },
62 "keywords": [
63 "defer",
64 "delay",
65 "clear",
66 "wait",
67 "promise",
68 "forRange",
69 "debounce",
70 "throttle"
71 ],
72 "author": "Darren Paul Wright <Darren@DarrenPaulWright.com>",
73 "license": "MIT",
74 "bugs": {
75 "url": "https://github.com/DarrenPaulWright/async-agent/issues"
76 },
77 "homepage": "https://github.com/DarrenPaulWright/async-agent#readme",
78 "devDependencies": {
79 "dmd-readable": "^1.1.0",
80 "exec-each": "0.0.3",
81 "jsdoc-to-markdown": "^5.0.3",
82 "karma-webpack-bundle": "^0.0.8"
83 }
84}