Comparing version 0.1.0 to 0.1.1
{ | ||
"name": "redux-arc", | ||
"version": "0.1.0", | ||
"description": "Declarative way to handle api calls in redux", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"version": "0.1.1", | ||
"description": "Declarative way to make api calls in redux", | ||
"main": "lib/index.js", | ||
"module": "es/index.js", | ||
"files": [ | ||
"dist", | ||
"lib", | ||
"src" | ||
], | ||
"keywords": [ | ||
@@ -15,4 +18,79 @@ "redux", | ||
], | ||
"author": "Vinicius Dacal <viniciusldacal@gmail.com>", | ||
"license": "MIT" | ||
"scripts": { | ||
"clean": "rimraf lib dist es coverage", | ||
"lint": "eslint src test build", | ||
"test": "cross-env BABEL_ENV=commonjs jest", | ||
"test:watch": "yarn test -- --watch", | ||
"test:cov": "yarn test -- --coverage", | ||
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib", | ||
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es", | ||
"build:umd": "cross-env BABEL_ENV=es NODE_ENV=development rollup -c -i src/index.js -o dist/redux.js", | ||
"build:umd:min": "cross-env BABEL_ENV=es NODE_ENV=production rollup -c -i src/index.js -o dist/redux.min.js", | ||
"build": "yarn run build:commonjs && yarn run build:es && yarn run build:umd && yarn run build:umd:min", | ||
"prepare": "yarn run clean && yarn run lint && yarn test && yarn run build", | ||
"examples:lint": "eslint examples", | ||
"examples:test": "cross-env CI=true babel-node examples/testAll.js", | ||
"docs:clean": "rimraf _book", | ||
"docs:prepare": "gitbook install", | ||
"docs:build": "yarn run docs:prepare && gitbook build -g reactjs/redux && cp logo/apple-touch-icon.png _book/gitbook/images/apple-touch-icon-precomposed-152.png && cp logo/favicon.ico _book/gitbook/images", | ||
"docs:watch": "yarn run docs:prepare && gitbook serve", | ||
"docs:publish": "yarn run docs:clean && yarn run docs:build && cp CNAME _book && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push git@github.com:reactjs/redux gh-pages --force" | ||
}, | ||
"devDependencies": { | ||
"babel-cli": "^6.3.15", | ||
"babel-core": "^6.3.15", | ||
"babel-eslint": "^7.0.0", | ||
"babel-jest": "^20.0.3", | ||
"babel-plugin-check-es2015-constants": "^6.3.13", | ||
"babel-plugin-external-helpers": "^6.22.0", | ||
"babel-plugin-transform-es2015-arrow-functions": "^6.3.13", | ||
"babel-plugin-transform-es2015-block-scoped-functions": "^6.3.13", | ||
"babel-plugin-transform-es2015-block-scoping": "^6.3.13", | ||
"babel-plugin-transform-es2015-classes": "^6.3.13", | ||
"babel-plugin-transform-es2015-computed-properties": "^6.3.13", | ||
"babel-plugin-transform-es2015-destructuring": "^6.3.13", | ||
"babel-plugin-transform-es2015-for-of": "^6.3.13", | ||
"babel-plugin-transform-es2015-function-name": "^6.3.13", | ||
"babel-plugin-transform-es2015-literals": "^6.3.13", | ||
"babel-plugin-transform-es2015-modules-commonjs": "^6.3.13", | ||
"babel-plugin-transform-es2015-object-super": "^6.3.13", | ||
"babel-plugin-transform-es2015-parameters": "^6.3.13", | ||
"babel-plugin-transform-es2015-shorthand-properties": "^6.3.13", | ||
"babel-plugin-transform-es2015-spread": "^6.3.13", | ||
"babel-plugin-transform-es2015-sticky-regex": "^6.3.13", | ||
"babel-plugin-transform-es2015-template-literals": "^6.3.13", | ||
"babel-plugin-transform-es2015-unicode-regex": "^6.3.13", | ||
"babel-plugin-transform-es3-member-expression-literals": "^6.5.0", | ||
"babel-plugin-transform-es3-property-literals": "^6.5.0", | ||
"babel-plugin-transform-object-rest-spread": "^6.3.13", | ||
"babel-register": "^6.3.13", | ||
"cross-env": "^5.0.1", | ||
"eslint": "^3.19.0", | ||
"eslint-config-react-app": "^1.0.4", | ||
"eslint-plugin-flowtype": "^2.29.2", | ||
"eslint-plugin-import": "^2.2.0", | ||
"eslint-plugin-jsx-a11y": "^5.0.3", | ||
"eslint-plugin-react": "^7.1.0", | ||
"gitbook-cli": "^2.3.0", | ||
"glob": "^7.1.1", | ||
"jest": "^20.0.4", | ||
"redux": "^3.7.1", | ||
"rimraf": "^2.3.4", | ||
"rollup": "^0.43.0", | ||
"rollup-plugin-babel": "^2.7.1", | ||
"rollup-plugin-node-resolve": "^3.0.0", | ||
"rollup-plugin-replace": "^1.1.1", | ||
"rollup-plugin-uglify": "^2.0.1" | ||
}, | ||
"authors": [ | ||
"Vinicius Dacal <viniciusldacal@gmail.com> (https://github.com/viniciusdacal)" | ||
], | ||
"license": "MIT", | ||
"jest": { | ||
"testRegex": "(/test/.*\\.spec.js)$" | ||
}, | ||
"dependencies": {}, | ||
"peerDependencies": { | ||
"redux": "^3.7.1" | ||
} | ||
} |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
No contributors or author data
MaintenancePackage does not specify a list of contributors or an author in package.json.
Found 1 instance in 1 package
Empty package
Supply chain riskPackage does not contain any code. It may be removed, is name squatting, or the result of a faulty package publish.
Found 1 instance in 1 package
No README
QualityPackage does not have a README. This may indicate a failed publish or a low quality package.
Found 1 instance in 1 package
No tests
QualityPackage does not have any tests. This is a strong signal of a poorly maintained or low quality package.
Found 1 instance in 1 package
51267
17
892
1
194
1
44
3