ducks
Version:
🦆🦆🦆 Ducks is a Reducer Bundles Manager that Implementing the Redux Ducks Modular Proposal with Great Convenience.
87 lines • 2.6 kB
JSON
{
"name": "ducks",
"version": "1.0.2",
"description": "🦆🦆🦆 Ducks is a Reducer Bundles Manager that Implementing the Redux Ducks Modular Proposal with Great Convenience.",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/src/mod.js",
"require": "./dist/cjs/src/mod.js"
}
},
"typings": "./dist/esm/src/mod.d.ts",
"engines": {
"node": ">=16",
"npm": ">=7"
},
"scripts": {
"build": "tsc && tsc -p tsconfig.cjs.json",
"clean": "shx rm -fr dist/*",
"dist": "npm-run-all clean build dist:commonjs",
"dist:commonjs": "jq -n \"{ type: \\\"commonjs\\\" }\" > dist/cjs/package.json",
"lint": "npm run lint:es && npm run lint:ts && npm run lint:md",
"lint:md": "markdownlint README.md",
"lint:ts": "tsc --isolatedModules --noEmit",
"start": "npm run quack",
"quack": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" node examples/quack.ts",
"test": "npm run lint && npm run test:unit",
"test:pack": "bash -x scripts/npm-pack-testing.sh",
"test:unit": "tap --node-arg=--loader=ts-node/esm --node-arg=--no-warnings \"src/**/*.spec.ts\" \"src/*.spec.ts\" \"examples/**/*.spec.ts\" \"tests/*.spec.ts\" \"tests/**/*.spec.ts\"",
"lint:es": "eslint --ignore-pattern tests/fixtures/ '{bin,examples,scripts,src,tests}/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/huan/ducks.git"
},
"keywords": [
"redux",
"ducks"
],
"author": "Huan LI <zixia@zixia.net> (李卓桓)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/huan/ducks/issues"
},
"homepage": "https://github.com/huan/ducks#readme",
"devDependencies": {
"@chatie/eslint-config": "^0.14.1",
"@chatie/git-scripts": "^0.6.1",
"@chatie/semver": "^0.4.7",
"@chatie/tsconfig": "^0.20.2",
"@types/glob": "^7.1.1",
"@types/redux-mock-store": "^1.0.2",
"@types/redux-saga": "^0.10.5",
"cross-env": "^7.0.3",
"glob": "^7.1.6",
"npm-run-all": "^4.1.5",
"pkg-jq": "^0.2.4",
"reduce-reducers": "^1.0.4",
"redux": "^4.0.5",
"redux-mock-store": "^1.5.4",
"rxjs": "^7.3.0",
"shx": "^0.3.3",
"tstest": "^0.5.16",
"typesafe-actions": "^5.1.0",
"utility-types": "^3.10.0"
},
"peerDependencies": {
"redux-observable": "^2.0.0",
"redux": "^4.0.5"
},
"files": [
"bin/",
"dist/",
"src/"
],
"tap": {
"check-coverage": false
},
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
},
"publishConfig": {
"tag": "latest"
}
}