|
| 1 | +{ |
| 2 | + "name": "axios-record-replay-adapter", |
| 3 | + "version": "0.0.1", |
| 4 | + "description": "Sit back, relax, and automatically record/replay your HTTP requests", |
| 5 | + "main": "index.js", |
| 6 | + "repository": "https://github.com/bmealhouse/axios-record-replay-adapter", |
| 7 | + "author": "Brent Mealhouse <[email protected]>", |
| 8 | + "license": "MIT", |
| 9 | + "private": false, |
| 10 | + "@pika/pack": { |
| 11 | + "pipeline": [ |
| 12 | + [ |
| 13 | + "@pika/plugin-ts-standard-pkg" |
| 14 | + ], |
| 15 | + [ |
| 16 | + "@pika/plugin-build-node" |
| 17 | + ] |
| 18 | + ] |
| 19 | + }, |
| 20 | + "husky": { |
| 21 | + "hooks": { |
| 22 | + "pre-commit": "lint-staged", |
| 23 | + "pre-push": "yarn test" |
| 24 | + } |
| 25 | + }, |
| 26 | + "jest": { |
| 27 | + "preset": "ts-jest", |
| 28 | + "testEnvironment": "node", |
| 29 | + "watchPathIgnorePatterns": [ |
| 30 | + "<rootDir>/recordings" |
| 31 | + ] |
| 32 | + }, |
| 33 | + "lint-staged": { |
| 34 | + "*.ts": [ |
| 35 | + "xo", |
| 36 | + "prettier --write", |
| 37 | + "git add" |
| 38 | + ] |
| 39 | + }, |
| 40 | + "prettier": { |
| 41 | + "useTabs": false, |
| 42 | + "semi": false, |
| 43 | + "singleQuote": true, |
| 44 | + "trailingComma": "all", |
| 45 | + "bracketSpacing": false |
| 46 | + }, |
| 47 | + "xo": { |
| 48 | + "envs": [ |
| 49 | + "jest" |
| 50 | + ], |
| 51 | + "prettier": true, |
| 52 | + "plugins": [ |
| 53 | + "filenames" |
| 54 | + ], |
| 55 | + "extends": "xo-typescript", |
| 56 | + "etensions": [ |
| 57 | + "ts" |
| 58 | + ], |
| 59 | + "rules": { |
| 60 | + "capitalized-comments": "off", |
| 61 | + "no-unused-vars": [ |
| 62 | + "error", |
| 63 | + { |
| 64 | + "ignoreRestSiblings": true, |
| 65 | + "argsIgnorePattern": "^_", |
| 66 | + "varsIgnorePattern": "^_" |
| 67 | + } |
| 68 | + ], |
| 69 | + "@typescript-eslint/indent": [ |
| 70 | + "error", |
| 71 | + 2 |
| 72 | + ], |
| 73 | + "filenames/match-exported": [ |
| 74 | + "error", |
| 75 | + "kebab", |
| 76 | + "^__" |
| 77 | + ] |
| 78 | + } |
| 79 | + }, |
| 80 | + "devDependencies": { |
| 81 | + "@pika/pack": "0.4.0", |
| 82 | + "@pika/plugin-build-node": "0.5.1", |
| 83 | + "@pika/plugin-ts-standard-pkg": "0.5.1", |
| 84 | + "@types/jest": "24.0.16", |
| 85 | + "@typescript-eslint/eslint-plugin": "1.13.0", |
| 86 | + "@typescript-eslint/parser": "1.13.0", |
| 87 | + "axios": "0.19.0", |
| 88 | + "eslint-config-xo-typescript": "0.15.0", |
| 89 | + "eslint-plugin-filenames": "1.3.2", |
| 90 | + "husky": "3.0.2", |
| 91 | + "jest": "24.8.0", |
| 92 | + "lint-staged": "9.2.1", |
| 93 | + "ts-jest": "24.0.2", |
| 94 | + "typescript": "3.5.3", |
| 95 | + "xo": "0.24.0" |
| 96 | + }, |
| 97 | + "peerDependencies": { |
| 98 | + "axios": "^0.19.0" |
| 99 | + }, |
| 100 | + "scripts": { |
| 101 | + "build": "pack build", |
| 102 | + "test": "jest" |
| 103 | + } |
| 104 | +} |
0 commit comments