Created
January 15, 2020 18:26
-
-
Save r3dm1ke/68e997081f493495eaab0dafc27bf0e4 to your computer and use it in GitHub Desktop.
Redux package.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "redux", | |
| "version": "4.0.4", | |
| "description": "Predictable state container for JavaScript apps", | |
| "license": "MIT", | |
| "homepage": "http://redux.js.org", | |
| "repository": "github:reduxjs/redux", | |
| "bugs": "https://github.com/reduxjs/redux/issues", | |
| "authors": [ | |
| "Dan Abramov <dan.abramov@me.com> (https://github.com/gaearon)", | |
| "Andrew Clark <acdlite@me.com> (https://github.com/acdlite)" | |
| ], | |
| "main": "lib/redux.js", | |
| "unpkg": "dist/redux.js", | |
| "module": "es/redux.js", | |
| "types": "types/index.d.ts", | |
| "files": [ | |
| "dist", | |
| "lib", | |
| "es", | |
| "src", | |
| "types" | |
| ], | |
| "scripts": { | |
| "clean": "rimraf lib dist es coverage types", | |
| "format": "prettier --write \"{src,test}/**/*.{js,ts}\" index.d.ts \"**/*.md\"", | |
| "format:check": "prettier --list-different \"{src,test}/**/*.{js,ts}\" index.d.ts \"**/*.md\"", | |
| "lint": "eslint --ext js,ts src test", | |
| "check-types": "tsc --noEmit", | |
| "pretest": "npm run build", | |
| "test": "jest", | |
| "test:watch": "npm test -- --watch", | |
| "test:cov": "npm test -- --coverage", | |
| "build": "rollup -c", | |
| "prepare": "npm run clean && npm run check-types && npm run format:check && npm run lint && npm test", | |
| "examples:lint": "eslint --ext js,ts examples", | |
| "examples:test": "cross-env CI=true babel-node examples/testAll.js" | |
| }, | |
| "dependencies": { | |
| "loose-envify": "^1.4.0" | |
| }, | |
| "npmName": "redux", | |
| "npmFileMap": [ | |
| { | |
| "basePath": "/dist/", | |
| "files": [ | |
| "*.js" | |
| ] | |
| } | |
| ], | |
| "browserify": { | |
| "transform": [ | |
| "loose-envify" | |
| ] | |
| }, | |
| "jest": { | |
| "testRegex": "(/test/.*\\.spec\\.[tj]s)$" | |
| }, | |
| "sideEffects": false | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment