UNPKG

@goodgamestudios/cxf-events

Version:

Unified events for BigFarm, Empire and others

109 lines (108 loc) 3.1 kB
{ "name": "@goodgamestudios/cxf-events", "version": "1.24.0", "description": "Unified events for BigFarm, Empire and others", "main": "dist/typings.js", "types": "dist/typings.d.ts", "scripts": { "serve:locally": "rimraf dist && cross-env STAGE=qa npm run build && http-server dist --port 4004 -c-1", "build": "webpack --config webpack.config.js", "build:typings": "tsc --project tsconfig.build.json", "build:qa": "rimraf dist && cross-env STAGE=qa npm run build && npm run build:typings", "build:live": "rimraf dist && cross-env ANALYZE_BUNDLE=false STAGE=live npm run build && npm run build:typings", "test": "jest src/*", "release": "semantic-release", "lint": "tslint './src/**/*.ts'", "lint:fix": "tslint './src/**/*.ts' --fix", "deploy:dev": "npm run build:qa && npm publish --tag qa --access public", "deploy:qa": "npm run build:qa && npm run release", "deploy:live": "npm run build:live && npm run release", "commit": "git-cz" }, "keywords": [ "cxf" ], "files": [ "dist" ], "author": "Andreas Pizsa <hopster@gmail.com> (https://github.com/AndreasPizsa)", "license": "MIT", "devDependencies": { "@commitlint/cli": "^17.0.3", "@commitlint/config-conventional": "^17.0.3", "@semantic-release/changelog": "^5.0.1", "@semantic-release/commit-analyzer": "^8.0.1", "@semantic-release/git": "^9.0.0", "@semantic-release/npm": "^7.0.5", "@semantic-release/release-notes-generator": "^9.0.1", "@types/jest": "^24.0.15", "@types/node": "^12.6.6", "clean-webpack-plugin": "^3.0.0", "cross-env": "^6.0.3", "cz-conventional-changelog": "^3.3.0", "http-server": "^14.1.1", "husky": "^1.1.4", "jest": "^24.8.0", "semantic-release": "^17.3.0", "standard-version": "^9.5.0", "ts-jest": "^24.0.2", "ts-loader": "^8.4.0", "tslint": "^5.18.0", "typescript": "^3.9.7", "webpack": "^4.41.0", "webpack-bundle-analyzer": "^3.3.2", "webpack-cli": "^3.3.8" }, "dependencies": { "@goodgamestudios/cxf-ready": "^1.0.5", "@goodgamestudios/cxf-runtime": "^0.3.2", "@types/debug": "^4.1.7", "debug": "^4.3.4", "eventemitter3": "^3.1.0" }, "commitlint": { "extends": [ "@commitlint/config-conventional" ], "rules": { "body-max-line-length": [ 1, "always", 100 ] } }, "husky": { "hooks": { "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", "pre-push": "npm run lint && npm run test" } }, "release": { "branches": [ { "name": "master" }, { "name": "develop", "channel": "qa", "prerelease": "qa" } ], "plugins": [ "@semantic-release/commit-analyzer", "@semantic-release/release-notes-generator", "@semantic-release/changelog", "@semantic-release/npm", "@semantic-release/git" ] }, "publishConfig": { "access": "public" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } } }