UNPKG

asyncc

Version:
79 lines 2.09 kB
{ "name": "asyncc", "version": "2.0.9", "description": "Just asynchronous patterns", "keywords": [ "async", "callback" ], "homepage": "https://commenthol.github.io/asyncc/", "bugs": { "url": "https://github.com/commenthol/asyncc/issues" }, "repository": { "type": "git", "url": "git+https://github.com/commenthol/asyncc.git" }, "license": "MIT", "author": "commenthol <commenthol@gmail.com>", "maintainers": [ "commenthol <commenthol@gmail.com>" ], "type": "module", "main": "dist/index.cjs", "module": "dist/index.es.js", "files": [ "dist", "lib", "src", "bower.json" ], "eslintConfig": { "plugins": [ "standard" ], "extends": "standard", "rules": { "spaced-comment": 0 } }, "devDependencies": { "@babel/cli": "^7.26.4", "@babel/core": "^7.26.8", "@babel/preset-env": "^7.26.8", "@babel/register": "^7.25.9", "@rollup/plugin-terser": "^0.4.4", "babelify": "^10.0.0", "browserify": "^17.0.1", "core-js": "^3.40.0", "eslint": "^8.57.1", "eslint-config-standard": "^17.1.0", "eslint-plugin-import": "^2.31.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^6.6.0", "eslint-plugin-standard": "^5.0.0", "jsdoc": "^4.0.4", "minami": "^1.2.3", "mocha": "^11.1.0", "nyc": "^17.1.0", "rimraf": "^6.0.1", "rollup": "^4.34.6" }, "engines": { "node": ">=6.0.0" }, "scripts": { "all": "npm run clean && npm run lint && npm run build && npm test", "build": "npm run build:cjs && npm run build:dist", "build:cjs": "babel -d lib src", "build:dist": "rollup -c scripts/rollup.conf.mjs", "clean": "rimraf dist lib es coverage .nyc_output", "clean:all": "rimraf node_modules && npm run clean", "coverage": "nyc -r text -r html npm run test:mocha", "doc": "jsdoc -c scripts/jsdoc/jsdoc.json", "lint": "eslint '**/*.js'", "readme": "markedpp --githubid -i README.md -o README.md", "test": "npm run test:mocha", "test:mocha": "mocha" } }