UNPKG

yax

Version:

Yet another store using redux. (Inspired by vuex and dva)

76 lines (75 loc) 1.92 kB
{ "name": "yax", "version": "0.4.2", "description": "Yet another store using redux. (Inspired by vuex and dva)", "main": "lib/index.js", "module": "es/index.js", "jsnext:main": "es/index.js", "files": [ "lib", "es", "src" ], "scripts": { "prebuild": "rm -rf es lib", "lint": "eslint src test", "build:lib": "cross-env BABEL_ENV=cjs babel src --out-dir lib", "build:es": "cross-env BABEL_ENV=es babel src --out-dir es", "build": "npm run build:lib && npm run build:es", "test": "cross-env BABEL_ENV=test nyc mocha --no-timeouts", "prepare": "npm run build", "report": "nyc report --reporter=html", "coveralls": "nyc report --reporter=text-lcov | coveralls" }, "nyc": { "include": [ "src/**/*.js" ], "require": [ "@babel/register" ], "sourceMap": false, "instrument": false }, "repository": { "type": "git", "url": "git+https://github.com/d-band/yax.git" }, "keywords": [ "csm", "redux", "react", "store", "state" ], "author": "d-band", "license": "MIT", "bugs": { "url": "https://github.com/d-band/yax/issues" }, "homepage": "https://github.com/d-band/yax#readme", "dependencies": { "@babel/runtime": "^7.5.5", "redux": "^4.0.4" }, "devDependencies": { "@babel/cli": "^7.5.5", "@babel/core": "^7.5.5", "@babel/plugin-transform-runtime": "^7.5.5", "@babel/preset-env": "^7.5.5", "@babel/register": "^7.5.5", "babel-eslint": "^10.0.2", "babel-plugin-istanbul": "^5.2.0", "coveralls": "^3.0.6", "cross-env": "^5.2.0", "eslint": "^6.1.0", "eslint-config-standard": "^13.0.1", "eslint-plugin-import": "^2.18.2", "eslint-plugin-node": "^9.1.0", "eslint-plugin-promise": "^4.2.1", "eslint-plugin-standard": "^4.0.0", "expect": "^24.8.0", "mocha": "^6.2.0", "nyc": "^14.1.1" } }