Skip to content

Commit

Permalink
6.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
solkimicreb committed Nov 25, 2018
1 parent 036d3e7 commit 8daadf8
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 11 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 22 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,32 @@
{
"name": "react-easy-state",
"version": "6.0.5",
"description":
"React state management with a minimal API. Made with ES6 Proxies.",
"version": "6.0.6",
"description": "React state management with a minimal API. Made with ES6 Proxies.",
"main": "dist/cjs.es6.js",
"module": "dist/es.es6.js",
"types": "types/index.d.ts",
"files": ["dist", "types"],
"files": [
"dist",
"types"
],
"scripts": {
"test": "jest --coverage",
"test-watch": "jest --watch",
"test-update": "jest --updateSnapshot",
"test-builds": "node ./scripts/testBuilds.js",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"lint": "standard",
"lint-fix":
"prettier --ignore-path '.gitignore' --write '**/*.{js,jsx}' '!**/build/**' && standard --fix",
"lint-fix": "prettier --ignore-path '.gitignore' --write '**/*.{js,jsx}' '!**/build/**' && standard --fix",
"build-examples": "node ./scripts/buildExamples.js",
"link-examples": "node ./scripts/linkExamples.js",
"unlink-examples": "node ./scripts/unlinkExamples.js",
"build": "node ./scripts/build.js",
"build-toc": "node ./scripts/buildToc.js"
},
"jest": {
"snapshotSerializers": ["enzyme-to-json/serializer"],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"collectCoverageFrom": [
"**/src/**",
"**/examples/**/*.{js,jsx}",
Expand Down Expand Up @@ -104,8 +107,17 @@
},
"standard": {
"parser": "babel-eslint",
"env": ["browser", "jest"],
"ignore": ["**/build/**", "**/node_modules/**"]
"env": [
"browser",
"jest"
],
"ignore": [
"**/build/**",
"**/node_modules/**"
]
},
"pre-push": ["lint", "test"]
"pre-push": [
"lint",
"test"
]
}

0 comments on commit 8daadf8

Please sign in to comment.