UNPKG

kakapo

Version:

Next generation mocking framework in Javascript

88 lines (87 loc) 2.65 kB
{ "name": "kakapo", "version": "4.0.6", "description": "Next generation mocking framework in Javascript", "main": "dist/index.js", "atlaskit:src": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc -p tsconfig.dist.json", "typecheck": "tsc --noEmit", "readme": "node create-readme.js", "test": "jest", "test:ci": "jest --runInBand --coverage", "test:watch": "jest --watch", "amend": "git add . && git commit --amend --reuse-message=HEAD", "push": "git push --tags && git push", "prepublishOnly": "yarn build", "release": "yarn publish --silent --new-version patch && yarn push", "perf:build": "yarn build && webpack-cli --config webpack.perf.config.js", "perf:stats": "webpack-cli --config webpack.perf.config.js --json > perf/dist/stats.json", "perf:analyze": "webpack-bundle-analyzer perf/dist/stats.json", "perf": "mkdir -p ./perf/dist && yarn perf:build && yarn perf:stats && yarn perf:analyze" }, "repository": { "type": "git", "url": "git+https://github.com/devlucky/Kakapo.js.git" }, "author": "devlucky", "license": "MIT", "bugs": { "url": "https://github.com/devlucky/Kakapo.js/issues" }, "homepage": "https://github.com/devlucky/Kakapo.js#readme", "devDependencies": { "@types/faker": "^4.1.5", "@types/jest": "^24.0.12", "@types/lodash.filter": "^4.6.0", "@types/lodash.first": "^3.0.0", "@types/lodash.foreach": "^4.5.0", "@types/lodash.includes": "^4.3.0", "@types/lodash.keys": "^4.2.0", "@types/lodash.last": "^3.0.0", "@types/lodash.merge": "^4.6.1", "@types/lodash.pickby": "^4.6.0", "@types/lodash.sample": "^4.2.1", "@typescript-eslint/eslint-plugin": "^1.8.0", "@typescript-eslint/parser": "^1.8.0", "eslint": "^5.16.0", "faker": "^3.1.0", "jest": "^24.8.0", "jquery": "^2.2.4", "superagent": "^2.0.0", "ts-jest": "^24.0.2", "ts-loader": "^6.0.0", "typescript": "^3.4.5", "webpack": "^4.8.1", "webpack-bundle-analyzer": "^2.11.1", "webpack-cli": "^2.1.3" }, "dependencies": { "lodash.filter": "^4.6.0", "lodash.first": "^3.0.0", "lodash.foreach": "^4.5.0", "lodash.includes": "^4.3.0", "lodash.keys": "^4.2.0", "lodash.last": "^3.0.0", "lodash.merge": "^4.6.1", "lodash.pickby": "^4.6.0", "lodash.sample": "^4.2.1", "parse-url": "^1.3.0", "path-match": "^1.2.4", "query-string": "^4.1.0" }, "keywords": [ "mocking", "framework", "kakapo", "fetch", "XMLHttpRequest", "fake", "stub", "request" ], "files": [ "dist" ] }