asyncbox
Version:
A collection of small async/await utilities
75 lines (74 loc) • 1.85 kB
JSON
{
"name": "asyncbox",
"description": "A collection of small async/await utilities",
"tags": [
"async/await",
"es7",
"async"
],
"version": "5.0.0",
"author": "jlipps@gmail.com",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/appium/asyncbox.git"
},
"bugs": {
"url": "https://github.com/appium/asyncbox/issues"
},
"engines": {
"node": "^20.19.0 || ^22.12.0 || >=24.0.0",
"npm": ">=10"
},
"main": "./build/lib/asyncbox.js",
"bin": {},
"directories": {
"lib": "./lib"
},
"files": [
"lib/**/*",
"build/lib/**/*"
],
"dependencies": {
"bluebird": "^3.5.1",
"lodash": "^4.17.4"
},
"scripts": {
"build": "tsc -b",
"clean": "npm run build -- --clean",
"rebuild": "npm run clean; npm run build",
"dev": "npm run build -- --watch",
"prepare": "npm run rebuild",
"test": "mocha --exit --timeout 1m \"./test/**/*-specs.ts\"",
"lint": "eslint .",
"format": "prettier -w ./lib",
"watch": "npm run dev"
},
"prettier": {
"bracketSpacing": false,
"printWidth": 100,
"singleQuote": true
},
"devDependencies": {
"@appium/eslint-config-appium-ts": "^2.0.5",
"@appium/tsconfig": "^1.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/bluebird": "^3.5.37",
"@types/lodash": "^4.14.189",
"@types/mocha": "^10.0.10",
"@types/node": "^25.0.3",
"chai": "^6.2.1",
"chai-as-promised": "^8.0.2",
"conventional-changelog-conventionalcommits": "^9.0.0",
"eslint": "^9.39.1",
"prettier": "^3.0.0",
"mocha": "^11.7.5",
"semantic-release": "^25.0.2",
"sinon": "^21.0.0",
"ts-node": "^10.9.1",
"tsx": "^4.21.0",
"typescript": "^5.1.6"
},
"types": "./build/lib/asyncbox.d.ts"
}