UNPKG

2.5 kBJSONView Raw
1{
2 "name": "async-agent",
3 "version": "0.3.0",
4 "description": "A javascript library of async functions",
5 "main": "src/index.js",
6 "scripts": {
7 "test": "karma start --single-run",
8 "test-watch": "karma start",
9 "patch": "npm version patch -m \"Increment patch version to %s\"",
10 "minor": "npm version minor -m \"Increment minor version to %s\"",
11 "major": "npm version major -m \"Increment major version to %s\"",
12 "docs-readme": "jsdoc2md src/index.js > README.md --template docs.hbs --partial scope.hbs",
13 "docs-defer": "jsdoc2md src/defer.js > docs/defer.md --template docs.hbs",
14 "docs-delay": "jsdoc2md src/delay.js > docs/delay.md --template docs.hbs",
15 "docs-clear": "jsdoc2md src/clear.js > docs/clear.md --template docs.hbs",
16 "docs-wait": "jsdoc2md src/wait.js > docs/wait.md --template docs.hbs",
17 "docs-forRange": "jsdoc2md src/forRange.js > docs/forRange.md --template docs.hbs",
18 "docs-debounce": "jsdoc2md src/debounce.js > docs/debounce.md --template docs.hbs",
19 "docs-throttle": "jsdoc2md src/throttle.js > docs/throttle.md --template docs.hbs",
20 "docs": "npm run docs-readme && npm run docs-defer && npm run docs-delay && npm run docs-clear && npm run docs-wait && npm run docs-forRange && npm run docs-debounce && npm run docs-throttle"
21 },
22 "repository": {
23 "type": "git",
24 "url": "git+https://github.com/DarrenPaulWright/async-agent.git"
25 },
26 "keywords": [
27 "defer",
28 "delay",
29 "clear",
30 "wait",
31 "promise",
32 "forRange",
33 "debounce",
34 "throttle"
35 ],
36 "author": "Darren Paul Wright <Darren@DarrenPaulWright.com>",
37 "license": "MIT",
38 "bugs": {
39 "url": "https://github.com/DarrenPaulWright/async-agent/issues"
40 },
41 "homepage": "https://github.com/DarrenPaulWright/async-agent#readme",
42 "devDependencies": {
43 "@babel/core": "^7.2.2",
44 "@babel/preset-env": "^7.3.1",
45 "babel-eslint": "^10.0.1",
46 "babel-loader": "^8.0.5",
47 "babel-plugin-istanbul": "^5.1.0",
48 "chai": "^4.2.0",
49 "eslint": "^5.13.0",
50 "eslint-loader": "^2.1.2",
51 "eslint-plugin-babel": "^5.3.0",
52 "jsdoc-to-markdown": "^4.0.1",
53 "karma": "^3.1.4",
54 "karma-brief-reporter": "0.0.7",
55 "karma-chrome-launcher": "^2.2.0",
56 "karma-coverage": "^1.1.2",
57 "karma-coveralls": "^2.1.0",
58 "karma-firefox-launcher": "^1.1.0",
59 "karma-mocha": "^1.3.0",
60 "karma-webpack": "^3.0.5",
61 "mocha": "^5.2.0",
62 "test-runner-config": "^0.5.0",
63 "wallaby-webpack": "^3.9.13",
64 "webpack": "^4.29.3",
65 "webpack-cli": "^3.2.3"
66 }
67}