@chickendinosaur/storex
Version:
Front-end state management system.
70 lines (69 loc) • 2.1 kB
JSON
{
"name": "@chickendinosaur/storex",
"version": "8.0.4",
"main": "lib/index.js",
"typings": "typings/index.d.ts",
"files": [
"lib",
"typings"
],
"scripts": {
"benchmark": "ts-node benchmarks/storex.benchmark.ts",
"benchmark-redux": "ts-node benchmarks/redux.benchmark.ts",
"build": "rm -rf lib typings && tsc --allowJS false --declaration",
"build-docs": "rm -rf docs && typedoc --out docs --theme minimal --mode file --exclude **/*.test.ts src",
"lint": "tslint --fix \"src/**/*.{ts,tsx}\"",
"prepare": "npm run test && npm run lint && npm run build",
"test": "jest -o",
"test:watch": "jest --watch"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && npm run build-docs && git add --all && npm run lint"
}
},
"author": {
"name": "John Pittman",
"email": "john@chickendinosaur.com",
"url": "https://github.com/chickendinosaur"
},
"license": "MIT",
"description": "Front-end state management system.",
"keywords": [
"action",
"dispatcher",
"distribution",
"event",
"management",
"reducer",
"state",
"store"
],
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/chickendinosaur/storex.git"
},
"bugs": {
"url": "https://github.com/chickendinosaur/storex/issues"
},
"homepage": "https://github.com/chickendinosaur/storex#readme",
"peerDependencies": {},
"dependencies": {},
"devDependencies": {
"@types/jest": "^22.2.3",
"benchmark": "^2.1.4",
"husky": "^1.0.0-rc.1",
"jest": "^22.4.3",
"prettier": "^1.12.0",
"redux": "^3.7.2",
"ts-jest": "^22.4.4",
"ts-node": "^5.0.1",
"tsc": "^1.20150623.0",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.12.0",
"tslint-plugin-prettier": "^1.3.0",
"typedoc": "^0.11.1",
"typescript": "^2.8.1"
}
}