@fbltd/async
Version:
Miscellaneous async utils
51 lines (50 loc) • 1.44 kB
JSON
{
"name": "@fbltd/async",
"version": "1.0.36",
"description": "Miscellaneous async utils",
"homepage": "https://github.com/GlennMiller1991/async",
"type": "module",
"keywords": [
"Reactivity",
"State Management",
"Async"
],
"exports": {
"require": "./dist/bin/index.js",
"import": "./dist/bin/index.js",
"types": "./dist/types/index.d.ts"
},
"files": [
"dist",
"package.json",
"tsconfig.base.json",
"tsconfig.json"
],
"scripts": {
"clearDist": "rm -r dist || true",
"clearModules": "rm -r node_modules || true",
"clearAll": "npm run clearDist && npm run clearModules",
"build": "npm run clearAll && npm i && mkdir dist && tsc",
"test": "node --expose-gc node_modules/.bin/jest --config=./__tests__/jest.config.cjs",
"postVersionCommit": "git commit -m='post version commit' || true",
"postVersionPush": "git push || true",
"patch": "npm version patch && npm run postVersionCommit && npm run postVersionPush",
"deploy": "npm run build && npm run test && npm run patch && npm publish && npm run clearDist"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/react": "^19.x.x",
"jest": "^30.0.4",
"react": "^19.x.x",
"ts-jest": "^29.4.0",
"typescript": "^5.x.x"
},
"peerDependencies": {
"react": "^19.x.x"
},
"publishConfig": {
"access": "public"
}
}