UNPKG

table-resolver

Version:
77 lines (76 loc) 1.95 kB
{ "name": "table-resolver", "version": "4.1.1", "description": "Table resolution utilities", "scripts": { "test:all": "npm test && npm run test:lint", "test": "jest --", "test:coverage": "jest --coverage --", "test:lint": "eslint . --ext .js --cache", "test:watch": "jest --watch --", "dist:build": "rimraf ./dist && babel ./src --out-dir ./dist", "preversion": "npm run test:all && npm run dist:build && git commit --allow-empty -am \"Update dist\"" }, "main": "dist", "repository": { "type": "git", "url": "https://github.com/reactabular/table-resolver.git" }, "keywords": [ "table", "tables", "resolve", "resolving", "algorithm", "reactabular" ], "files": [ "dist" ], "jest": { "collectCoverage": true, "moduleFileExtensions": [ "js" ], "moduleDirectories": [ "node_modules" ], "setupFiles": [ "./lib/test-setup.js" ] }, "author": "Juho Vepsalainen <bebraw@gmail.com> (http://github.com/bebraw)", "license": "MIT", "bugs": { "url": "https://github.com/reactabular/table-resolver/issues" }, "dependencies": { "lodash": "^4.17.4" }, "devDependencies": { "babel-cli": "^6.22.2", "babel-core": "^6.22.1", "babel-eslint": "^7.1.1", "babel-jest": "^18.0.0", "babel-plugin-lodash": "^3.2.11", "babel-plugin-syntax-object-rest-spread": "^6.13.0", "babel-plugin-transform-object-rest-spread": "^6.22.0", "babel-preset-es2015": "^6.22.0", "babel-preset-react": "^6.22.0", "eslint": "^3.15.0", "eslint-config-airbnb": "^14.1.0", "eslint-plugin-import": "^2.2.0", "eslint-plugin-jsx-a11y": "^4.0.0", "eslint-plugin-react": "^6.9.0", "git-prepush-hook": "^1.0.2", "jest": "^18.1.0", "redux": "^3.6.0", "rimraf": "^2.5.4" }, "peerDependencies": { "redux": ">= 3.0.0 < 5.0.0" }, "pre-push": [ "test:all" ] }