Skip to main content
Module

x/iam_policies/package.json

Iam policies implementation for create roles and manage permissions
Go to Latest
File
{ "author": { "name": "roggervalf", "email": "rogger.valverde@uni.pe" }, "license": "MIT", "description": "Identity based policies library", "version": "4.0.2", "keywords": [ "iam", "policies", "iam-policies", "roles", "permissions" ], "name": "iam-policies", "repository": { "type": "git", "url": "https://github.com/roggervalf/iam-policies" }, "bugs": { "url": "https://github.com/roggervalf/iam-policies/issues" }, "homepage": "https://github.com/roggervalf/iam-policies#readme", "scripts": { "pretest": "npm-run-all pretty:quick lint:staged", "prettier:format": "./node_modules/.bin/prettier **/*.{ts,js,json,yml} -l --ignore-path ./.eslintignore", "prettier:fix": "./node_modules/.bin/prettier **/*.{ts,js,json,yml} --write --ignore-path ./.eslintignore", "eslint:format": "./node_modules/.bin/eslint **/*.{ts,js} --ignore-path ./.eslintignore", "eslint:fix": "./node_modules/.bin/eslint . --ignore-path ./.eslintignore --fix", "pretty:quick": "./node_modules/.bin/pretty-quick --ignore-path ./.eslintignore --staged", "lint:staged": "./node_modules/.bin/lint-staged", "prepublishOnly": "yarn build", "dry-run": "npm publish --dry-run", "test": "jest --runInBand --config .unit.jest.config.js", "test:watch": "jest --config .unit.jest.config.js --watch", "test:coverage": "jest --coverage --config .unit.jest.config.js", "send:coveralls": "coveralls < coverage/lcov.info", "test:coveralls": "npm-run-all test:coverage send:coveralls", "clean": "rimraf dist temp", "clean:temp": "rimraf temp", "build:c": "rollup -c", "build": "npm-run-all build:c clean:temp", "build:watch": "rollup -c -w", "start": "npm-run-all clean build:watch", "prepare": "yarn build", "predeploy": "cd example && yarn && yarn start", "cm": "git cz", "semantic-release": "semantic-release" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "source": "main.ts", "main": "dist/main.js", "module": "dist/main.es.js", "jsnext:main": "dist/main.es.js", "typings": "dist/main.d.ts", "devDependencies": { "@babel/core": "^7.7.2", "@babel/preset-env": "^7.7.1", "@babel/preset-typescript": "^7.7.2", "@commitlint/cli": "9.1.1", "@commitlint/config-conventional": "11.0.0", "@commitlint/travis-cli": "9.1.1", "@rollup/plugin-babel": "^5.0.0", "@rollup/plugin-commonjs": "^11.0.2", "@rollup/plugin-node-resolve": "^7.1.1", "@semantic-release/changelog": "^5.0.0", "@semantic-release/commit-analyzer": "^8.0.1", "@semantic-release/git": "^9.0.0", "@semantic-release/github": "^7.0.7", "@semantic-release/npm": "^7.0.6", "@semantic-release/release-notes-generator": "^9.0.1", "@types/jest": "^24.0.22", "@typescript-eslint/eslint-plugin": "4.5.0", "@typescript-eslint/parser": "4.5.0", "babel-eslint": "^10.0.3", "babel-jest": "26.2.2", "commitizen": "^4.0.3", "coveralls": "^3.1.0", "cz-conventional-changelog": "3.2.0", "eslint": "^6.8.0", "eslint-config-prettier": "^6.7.0", "eslint-plugin-prettier": "^3.1.2", "eslint-plugin-promise": "^4.2.1", "husky": "^3.1.0", "jest": "26.2.2", "lint-staged": "^10.2.7", "markdownlint": "^0.18.0", "npm-run-all": "^4.1.5", "prettier": "2.1.2", "pretty-quick": "3.1.0", "rimraf": "^3.0.0", "rollup": "2.32.1", "rollup-plugin-dts": "1.4.13", "rollup-plugin-peer-deps-external": "^2.2.0", "rollup-plugin-typescript2": "^0.25.3", "semantic-release": "^17.1.1", "tslib": "^1.10.0", "typescript": "4.0.3" }, "files": [ "dist" ], "dependencies": {}, "release": { "plugins": [ "@semantic-release/commit-analyzer", "@semantic-release/release-notes-generator", "@semantic-release/changelog", "@semantic-release/npm", "@semantic-release/github", "@semantic-release/git" ], "branch": "master" }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "lint-staged": { "*.{js,ts}": "yarn eslint:fix" }, "husky": { "hooks": { "pre-commit": "yarn test", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }}