react-redux-typescript
Version:
React / Redux / TypeScript Utils
53 lines (52 loc) • 1.84 kB
JSON
{
"name": "react-redux-typescript",
"version": "3.0.0-rc.3",
"description": "React / Redux / TypeScript Utils",
"author": "Piotr Witek <piotrek.witek@gmail.com> (http://piotrwitek.github.io)",
"repository": "https://github.com/piotrwitek/react-redux-typescript",
"homepage": "https://github.com/piotrwitek/react-redux-typescript",
"license": "MIT",
"types": "es5-commonjs/index.d.ts",
"main": "es5-commonjs/index.js",
"module": "es5-module/index.js",
"jsnext:main": "jsnext/index.js",
"engines": {
"node": ">= 4"
},
"scripts": {
"reinstall": "rm -rf node_modules/ && yarn install",
"clean": "rm -rf es5-commonjs/ es5-module/ jsnext/",
"prepublishOnly": "yarn run clean && yarn run reinstall && yarn run check && yarn run test && yarn run build",
"check": "npm run lint & npm run tsc",
"lint": "tslint --project './tsconfig.json'",
"tsc": "tsc -p . --noEmit",
"tsc:watch": "tsc -p . --noEmit -w",
"test": "jest --config jest.config.json",
"test:watch": "jest --config jest.config.json --watch",
"test:v2": "ts-node ./src/v2/helpers-test.ts",
"build": "yarn run build:commonjs & yarn run build:module & yarn run build:jsnext",
"build:commonjs": "rm -rf es5-commonjs/ && tsc -p . --outDir es5-commonjs/",
"build:module": "rm -rf es5-module/ && tsc -p . --outDir es5-module/ -m 'ES2015'",
"build:jsnext": "rm -rf jsnext/ && tsc -p . --outDir jsnext/ -t 'ES2015'"
},
"dependencies": {
"typesafe-actions": "1.0.0"
},
"devDependencies": {
"@types/jest": "21.1.10",
"@types/node": "6.0.95",
"jest-cli": "22.0.4",
"redux": "3.7.2",
"ts-jest": "22.0.0",
"ts-node": "4.1.0",
"tslib": "1.8.1",
"tslint": "5.8.0",
"typescript": "2.6.2"
},
"keywords": [
"react",
"redux",
"typescript",
"utils"
]
}