redux-feature-generator
Version:
Generate Redux feature code from the command line
58 lines (57 loc) • 1.57 kB
JSON
{
"name": "redux-feature-generator",
"version": "1.4.0",
"description": "Generate Redux feature code from the command line",
"keywords": [
"redux",
"feature",
"redux-features",
"generator",
"feature-generator"
],
"main": "build/src/cli.js",
"files": [
"build/src/**/*",
"build/templates/**/*"
],
"scripts": {
"test": "jest",
"test:path:gen": "node ./build/src/cli.js newFeature ./test/src/features",
"test:cwd:gen": "node ./build/src/cli.js newFeature",
"build": "gulp",
"build:test": "yarn build && yarn test",
"start": "node ./build/src/cli.js"
},
"jest": {
"verbose": true,
"silent": true,
"collectCoverage": true,
"testPathIgnorePatterns": [
"build/"
]
},
"repository": "git+https://github.com/ChaddFrasier/redux-feature-generator.git",
"author": "chaddfrasier",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ChaddFrasier/redux-feature-generator/issues"
},
"homepage": "https://github.com/ChaddFrasier/redux-feature-generator#readme",
"bin": {
"generate-feature": "./build/src/cli.js"
},
"preferGlobal": true,
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.18",
"babel-jest": "^27.5.1",
"del": "^6.0.0",
"gulp": "^4.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"jest": "^27.5.1",
"typescript": "^4.5.5"
}
}