UNPKG

@jvitela/recompute

Version:

Selector functions based on Observable and Computed values.

89 lines (88 loc) 2.61 kB
{ "name": "@jvitela/recompute", "version": "0.3.5", "description": "Selector functions based on Observable and Computed values.", "main": "lib/index.js", "scripts": { "test": "better-npm-run test", "test:debug": "better-npm-run test:debug", "test:cov": "better-npm-run test:cov", "compile:commonjs": "better-npm-run compile:commonjs", "compile:umd": "better-npm-run compile:umd", "compile:es": "babel -d es/ src/", "compile": "npm run compile:commonjs && npm run compile:umd && npm run compile:es", "how_to_publish": "echo 'npm publish --access public'" }, "keywords": [ "selector", "computed", "memoized", "redux" ], "bugs": { "url": "https://github.com/jvitela/recompute/issues" }, "author": "jvitela", "repository": { "type": "git", "url": "git+https://github.com/jvitela/recompute.git" }, "license": "MIT", "devDependencies": { "@babel/cli": "^7.14.8", "@babel/core": "^7.14.8", "@babel/plugin-check-constants": "^7.0.0-beta.38", "@babel/plugin-transform-arrow-functions": "^7.14.5", "@babel/plugin-transform-block-scoping": "^7.14.5", "@babel/plugin-transform-function-name": "^7.14.5", "@babel/plugin-transform-modules-commonjs": "^7.14.5", "@babel/plugin-transform-modules-umd": "^7.14.5", "@babel/plugin-transform-parameters": "^7.14.5", "@babel/plugin-transform-shorthand-properties": "^7.14.5", "@babel/plugin-transform-spread": "^7.14.6", "@babel/plugin-transform-template-literals": "^7.14.5", "@babel/register": "^7.14.5", "better-npm-run": "^0.1.1", "chai": "^4.2.0", "mocha": "^8.1.3", "nyc": "^15.1.0" }, "betterScripts": { "test": { "command": "mocha --require @babel/register --ui tdd --recursive", "env": { "NODE_ENV": "test" } }, "test:debug": { "command": "mocha --inspect-brk --require @babel/register --ui tdd --recursive", "env": { "NODE_ENV": "test" } }, "test:cov": { "command": "nyc --reporter=lcov --reporter=text mocha --require @babel/register --ui tdd", "env": { "NODE_ENV": "test", "COVERAGE": "true" } }, "compile:commonjs": { "command": "babel -d lib/ src/", "env": { "NODE_ENV": "commonjs" } }, "compile:umd": { "command": "mkdir dist/ && babel -o dist/recompute.js src/", "env": { "NODE_ENV": "umd" } } }, "homepage": "https://github.com/jvitela/recompute#readme", "directories": { "lib": "lib", "test": "test" } }