UNPKG

@enigmatis/polaris-common

Version:
88 lines (87 loc) 2.47 kB
{ "name": "@enigmatis/polaris-common", "version": "1.4.5", "description": "common types for polaris", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "rimraf dist && tsc -p tsconfig.json", "test": "echo There are no tests in this project!", "semantic-release": "semantic-release", "travis-deploy-once": "travis-deploy-once", "prepare": "npm run lint:fix && npm run build", "lint": "npm run tslint-check && tslint -p .", "tslint-check": "tslint-config-prettier-check ./tslint.json", "lint:fix": "npm run tslint-check && tslint -p . --fix", "link": "cd ../polaris-graphql-logger && npm link && cd ../polaris-common && npm link @enigmatis/polaris-graphql-logger" }, "publishConfig": { "access": "public" }, "release": { "plugins": [ "@semantic-release/commit-analyzer", "@semantic-release/release-notes-generator", [ "@semantic-release/npm", { "npmPublish": true } ], "@semantic-release/github" ], "prepare": [ "@semantic-release/changelog", "@semantic-release/npm", { "path": "@semantic-release/git", "assets": [ "package.json", "package-lock.json", "CHANGELOG.md" ], "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}" } ] }, "author": "enigmatis", "license": "ISC", "repository": { "type": "git", "url": "git+https://github.com/Enigmatis/polaris-common.git" }, "keywords": [ "polaris", "graphql", "typescript" ], "dependencies": { "apollo-server-errors": "^2.4.2", "graphql": "^14.7.0" }, "devDependencies": { "@commitlint/cli": "^8.3.5", "@commitlint/config-conventional": "^8.3.4", "@semantic-release/changelog": "^5.0.1", "@semantic-release/git": "^9.0.0", "@types/node": "^13.13.14", "husky": "^3.1.0", "prettier": "^1.19.1", "rimraf": "^3.0.2", "semantic-release": "^17.1.1", "travis-deploy-once": "^5.0.11", "ts-node": "^8.10.2", "tslint": "^5.20.1", "tslint-config-prettier": "^1.18.0", "tslint-consistent-codestyle": "^1.16.0", "tslint-eslint-rules": "^5.4.0", "tslint-plugin-prettier": "^2.3.0", "typescript": "^3.9.6" }, "husky": { "hooks": { "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", "pre-commit": "npm run lint:fix" } } }