source: frontend/node_modules/async/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 2.2 KB
Line 
1{
2 "name": "async",
3 "description": "Higher-order functions and common patterns for asynchronous code",
4 "version": "3.2.6",
5 "main": "dist/async.js",
6 "author": "Caolan McMahon",
7 "homepage": "https://caolan.github.io/async/",
8 "repository": {
9 "type": "git",
10 "url": "https://github.com/caolan/async.git"
11 },
12 "bugs": {
13 "url": "https://github.com/caolan/async/issues"
14 },
15 "keywords": [
16 "async",
17 "callback",
18 "module",
19 "utility"
20 ],
21 "devDependencies": {
22 "@babel/eslint-parser": "^7.16.5",
23 "@babel/core": "7.25.2",
24 "babel-minify": "^0.5.0",
25 "babel-plugin-add-module-exports": "^1.0.4",
26 "babel-plugin-istanbul": "^7.0.0",
27 "babel-plugin-syntax-async-generators": "^6.13.0",
28 "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
29 "babel-preset-es2015": "^6.3.13",
30 "babel-preset-es2017": "^6.22.0",
31 "babel-register": "^6.26.0",
32 "babelify": "^10.0.0",
33 "benchmark": "^2.1.1",
34 "bluebird": "^3.4.6",
35 "browserify": "^17.0.0",
36 "chai": "^4.2.0",
37 "cheerio": "^0.22.0",
38 "es6-promise": "^4.2.8",
39 "eslint": "^8.6.0",
40 "eslint-plugin-prefer-arrow": "^1.2.3",
41 "fs-extra": "^11.1.1",
42 "jsdoc": "^4.0.3",
43 "karma": "^6.3.12",
44 "karma-browserify": "^8.1.0",
45 "karma-firefox-launcher": "^2.1.2",
46 "karma-mocha": "^2.0.1",
47 "karma-mocha-reporter": "^2.2.0",
48 "karma-safari-launcher": "^1.0.0",
49 "mocha": "^6.1.4",
50 "native-promise-only": "^0.8.0-a",
51 "nyc": "^17.0.0",
52 "rollup": "^4.2.0",
53 "rollup-plugin-node-resolve": "^5.2.0",
54 "rollup-plugin-npm": "^2.0.0",
55 "rsvp": "^4.8.5",
56 "semver": "^7.3.5",
57 "yargs": "^17.3.1"
58 },
59 "scripts": {
60 "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert",
61 "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js",
62 "lint": "eslint --fix .",
63 "mocha-browser-test": "karma start",
64 "mocha-node-test": "mocha",
65 "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test",
66 "test": "npm run lint && npm run mocha-node-test"
67 },
68 "license": "MIT",
69 "nyc": {
70 "exclude": [
71 "test"
72 ]
73 },
74 "module": "dist/async.mjs"
75}
Note: See TracBrowser for help on using the repository browser.