UNPKG

palisade

Version:

Role-based security, authorization, and filtering utilities for thinky and RethinkDB

107 lines (106 loc) 3.03 kB
{ "name": "palisade", "version": "1.1.6", "description": "Role-based security, authorization, and filtering utilities for thinky and RethinkDB", "main": "dist/index.js", "keywords": [ "security", "authorization", "filter", "filtering", "thinky", "rethink", "rethinkdb", "api", "user", "role", "acl" ], "repository": { "type": "git", "url": "git+https://github.com/shastajs/palisade.git" }, "author": "Contra <yo@contra.io> (http://contra.io)", "license": "MIT", "bugs": { "url": "https://github.com/shastajs/palisade/issues" }, "homepage": "https://github.com/shastajs/palisade#readme", "files": [ "dist" ], "scripts": { "preversion": "npm run clean && npm run build && npm docs", "postversion": "npm run changelog", "build": "babel src --out-dir dist", "clean": "rimraf dist", "lint": "eslint src test", "changelog": "github-changes -o contra -r palisade -b master -f ./CHANGELOG.md --order-semver --use-commit-body", "test": "npm run-script lint && mocha --compilers js:babel-register --recursive --reporter spec", "docs": "npm run docs:pre && npm run docs:build && npm run docs:publish", "docs:pre": "gitbook install && rimraf _book", "docs:build": "gitbook build -g shastajs/palisade", "docs:publish": "cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push git@github.com:shastajs/palisade gh-pages --force" }, "devDependencies": { "babel": "^6.3.26", "babel-cli": "^6.4.0", "babel-core": "^6.4.0", "babel-eslint": "^7.0.0", "babel-loader": "^6.2.1", "babel-plugin-add-module-exports": "^0.2.1", "babel-plugin-transform-runtime": "^6.4.3", "babel-preset-es2015": "^6.3.13", "babel-preset-es2015-loose": "^8.0.0", "babel-preset-stage-0": "^6.3.13", "babel-register": "^6.4.3", "babelify": "^7.2.0", "eslint": "^3.8.1", "eslint-config-rackt": "^1.1.1", "gitbook-cli": "^2.3.0", "github-changes": "^1.0.1", "mocha": "^3.0.0", "rimraf": "^2.5.0", "should": "^11.0.0", "thinky": "^2.3.7" }, "babel": { "presets": [ "es2015", "stage-0" ], "plugins": [ "transform-runtime", "add-module-exports" ] }, "eslintConfig": { "parser": "babel-eslint", "extends": "rackt", "env": { "node": true, "es6": true, "mocha": true }, "ecmaFeatures": { "modules": true }, "globals": { "it": true, "describe": true } }, "dependencies": { "lodash.filter": "^4.0.1", "lodash.foreach": "^4.0.0", "lodash.includes": "^4.0.1", "lodash.intersection": "^4.0.1", "lodash.isdate": "^4.0.0", "lodash.isempty": "^4.0.0", "lodash.map": "^4.1.0", "lodash.mapvalues": "^4.0.1", "lodash.partial": "^4.0.1", "lodash.reduce": "^4.1.0", "lodash.some": "^4.1.0" } }