UNPKG

fluxible-js

Version:

Smaller, faster, better state management system that supports asynchronicity and state persistence out of the box.

78 lines (77 loc) 2.31 kB
{ "name": "fluxible-js", "version": "6.1.5", "description": "Smaller, faster, better state management system that supports asynchronicity and state persistence out of the box.", "main": "lib/index.js", "types": "lib/index.d.ts", "files": [ "lib/*", "__tests__/*", "package.json", "LICENSE", "README.md" ], "scripts": { "test": "npm run build && jest __tests__/unit/* --env=node --coverage", "build": "rm -rf lib && mkdir lib && npm run lint && tsc", "eslint": "eslint . --ext .js,.ts --fix", "prettier": "prettier \"*.js|*.ts\" \"src/**/*.js|src/**/*.ts\" --write", "lint": "npm run prettier && npm run eslint", "prepare": "husky install", "prepublish": "yarn test" }, "lint-staged": { "src/**/*.ts": [ "prettier --write", "eslint --fix" ], "__tests__/**/*.js": [ "prettier --write", "eslint --fix" ] }, "repository": { "type": "git", "url": "git+ssh://git@github.com/aprilmintacpineda/fluxible-js.git" }, "keywords": [ "state-management", "state-pattern", "asynchronous-state-management", "synchronous-state-management" ], "author": "April Mintac Pineda", "license": "MIT", "bugs": { "url": "https://github.com/aprilmintacpineda/fluxible-js/issues" }, "homepage": "https://github.com/aprilmintacpineda/fluxible-js#readme", "devDependencies": { "@babel/core": "^7.19.0", "@babel/eslint-parser": "^7.18.9", "@babel/node": "^7.18.10", "@babel/preset-env": "^7.19.0", "@typescript-eslint/eslint-plugin": "^5.36.2", "@typescript-eslint/parser": "^5.36.2", "@typescript-eslint/typescript-estree": "^5.36.2", "babel-core": "^7.0.0-bridge.0", "babel-eslint": "^10.1.0", "babel-loader": "^8.2.5", "babel-plugin-module-resolver": "^4.1.0", "babel-preset-minify": "^0.5.2", "eslint": "^8.23.0", "eslint-import-resolver-babel-module": "^5.3.1", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jest": "^27.0.1", "eslint-plugin-module-resolver": "^1.5.0", "eslint-plugin-react": "^7.31.7", "eslint-plugin-react-hooks": "^4.6.0", "husky": "^8.0.1", "jest": "^29.0.2", "lint-staged": "^13.0.3", "prettier": "^2.7.1" }, "dependencies": { "typescript": "^4.8.2" } }