UNPKG

normalizr

Version:

Normalizes and denormalizes JSON according to schema for Redux and Flux applications

91 lines (90 loc) 2.44 kB
{ "name": "normalizr", "version": "3.3.0", "description": "Normalizes and denormalizes JSON according to schema for Redux and Flux applications", "bugs": { "url": "https://github.com/paularmstrong/normalizr/issues" }, "homepage": "https://github.com/paularmstrong/normalizr", "repository": { "url": "https://github.com/paularmstrong/normalizr.git", "type": "git" }, "keywords": [ "flux", "redux", "normalize", "denormalize", "api", "json" ], "files": [ "dist/", "index.d.ts", "LICENSE", "README.md" ], "main": "dist/normalizr.js", "module": "dist/normalizr.es.js", "typings": "index.d.ts", "sideEffects": false, "scripts": { "build": "npm run clean && npm-run-all --parallel build:*", "build:development": "NODE_ENV=development rollup -c", "build:production": "NODE_ENV=production rollup -c", "clean": "rimraf dist", "flow": "flow", "lint": "eslint --fix .", "lint:ci": "eslint .", "prebuild": "npm run clean", "precommit": "flow check && lint-staged", "prepublishOnly": "npm run build", "test": "jest", "test:ci": "jest --ci", "test:coverage": "npm run test -- --coverage && cat ./coverage/lcov.info | coveralls" }, "author": "Paul Armstrong", "contributors": [ "Dan Abramov" ], "license": "MIT", "devDependencies": { "babel-core": "^6.26.0", "babel-eslint": "^7.1.1", "babel-plugin-external-helpers": "^6.22.0", "babel-plugin-transform-class-properties": "^6.24.1", "babel-plugin-transform-object-rest-spread": "^6.26.0", "babel-preset-env": "^1.6.1", "coveralls": "^2.11.15", "eslint": "^4.19.1", "eslint-config-prettier": "^2.9.0", "eslint-plugin-jest": "^21.15.0", "eslint-plugin-prettier": "^2.6.0", "flow-bin": "^0.65.0", "husky": "^0.14.3", "immutable": "^3.8.1", "jest": "^22.4.3", "lint-staged": "^6.1.0", "npm-run-all": "^3.1.2", "prettier": "^1.12.1", "rimraf": "^2.5.4", "rollup": "^0.54.1", "rollup-plugin-babel": "^3.0.3", "rollup-plugin-filesize": "^1.5.0", "rollup-plugin-uglify": "^3.0.0", "typescript": "^2.1.4", "typescript-definition-tester": "0.0.5", "uglify-es": "^3.3.8" }, "dependencies": {}, "lint-staged": { "src/**/*.js": [ "test", "git add" ], "*.{js,json,css,md}": [ "prettier --write", "git add" ] } }