|
1 | 1 | { |
2 | | - "name": "@jaredwray/mockhttp", |
3 | | - "version": "0.6.1", |
4 | | - "description": "Mock Http - Easy way to mock http with httpbin replacement", |
5 | | - "type": "module", |
6 | | - "main": "dist/index.js", |
7 | | - "directories": { |
8 | | - "test": "test" |
9 | | - }, |
10 | | - "scripts": { |
11 | | - "test": "xo --fix && vitest run --coverage", |
12 | | - "dev": "xo --fix && tsx src/index.ts --watch", |
13 | | - "build": "rimraf ./dist && tsup src/index.ts --format esm --dts --clean", |
14 | | - "docker:build": "docker build -t jaredwray/mockhttp .", |
15 | | - "docker:run": "docker run -p 3000:3000 jaredwray/mockhttp", |
16 | | - "docker:push": "docker push jaredwray/mockhttp", |
17 | | - "docker:stop": "docker stop $(docker ps -a -q --filter ancestor=jaredwray/mockhttp --format=\"{{.ID}}\")", |
18 | | - "docker:readme": "tsx ./scripts/create-docker-readme.ts", |
19 | | - "docker:compose:up": "docker-compose up -d", |
20 | | - "docker:compose:down": "docker-compose down", |
21 | | - "prepare": "pnpm run build", |
22 | | - "start": "node dist/index.js" |
23 | | - }, |
24 | | - "repository": { |
25 | | - "type": "git", |
26 | | - "url": "git+https://github.com/jaredwray/mockhttp.git" |
27 | | - }, |
28 | | - "keywords": [ |
29 | | - "mock", |
30 | | - "http", |
31 | | - "httpbin", |
32 | | - "test" |
33 | | - ], |
34 | | - "author": "Jared Wray <me@jaredwray.com>", |
35 | | - "license": "MIT", |
36 | | - "bugs": { |
37 | | - "url": "https://github.com/jaredwray/mockhttp/issues" |
38 | | - }, |
39 | | - "homepage": "https://github.com/jaredwray/mockhttp#readme", |
40 | | - "devDependencies": { |
41 | | - "@swc/core": "^1.13.4", |
42 | | - "@types/html-escaper": "^3.0.4", |
43 | | - "@vitest/coverage-v8": "^3.2.4", |
44 | | - "rimraf": "^6.0.1", |
45 | | - "tsup": "^8.5.0", |
46 | | - "tsx": "^4.20.4", |
47 | | - "typescript": "^5.9.2", |
48 | | - "vitest": "^3.2.4", |
49 | | - "xo": "^1.2.1" |
50 | | - }, |
51 | | - "dependencies": { |
52 | | - "@fastify/cookie": "^11.0.2", |
53 | | - "@fastify/helmet": "^13.0.1", |
54 | | - "@fastify/static": "^8.2.0", |
55 | | - "@fastify/swagger": "^9.5.1", |
56 | | - "@fastify/swagger-ui": "^5.2.3", |
57 | | - "@scalar/api-reference": "^1.34.4", |
58 | | - "detect-port": "^2.1.0", |
59 | | - "fastify": "^5.5.0", |
60 | | - "hookified": "^1.12.0", |
61 | | - "html-escaper": "^3.0.3", |
62 | | - "pino": "^9.9.0", |
63 | | - "pino-pretty": "^13.1.1" |
64 | | - }, |
65 | | - "files": [ |
66 | | - "dist", |
67 | | - "public", |
68 | | - "LICENCE" |
69 | | - ], |
70 | | - "pnpm": { |
71 | | - "onlyBuiltDependencies": [ |
72 | | - "@swc/core", |
73 | | - "esbuild", |
74 | | - "unrs-resolver", |
75 | | - "vue-demi" |
76 | | - ] |
77 | | - }, |
78 | | - "xo": { |
79 | | - "rules": { |
80 | | - "@typescript-eslint/no-unsafe-call": "off", |
81 | | - "@typescript-eslint/no-unsafe-assignment": "off" |
82 | | - } |
83 | | - } |
| 2 | + "name": "@jaredwray/mockhttp", |
| 3 | + "version": "0.6.1", |
| 4 | + "description": "Mock Http - Easy way to mock http with httpbin replacement", |
| 5 | + "type": "module", |
| 6 | + "main": "dist/index.js", |
| 7 | + "directories": { |
| 8 | + "test": "test" |
| 9 | + }, |
| 10 | + "scripts": { |
| 11 | + "lint": "biome check --write", |
| 12 | + "test": "pnpm lint && vitest run --coverage", |
| 13 | + "test:ci": "biome check && vitest run --coverage", |
| 14 | + "dev": "pnpm lint && tsx src/index.ts --watch", |
| 15 | + "build": "rimraf ./dist && tsup src/index.ts --format esm --dts --clean", |
| 16 | + "docker:build": "docker build -t jaredwray/mockhttp .", |
| 17 | + "docker:run": "docker run -p 3000:3000 jaredwray/mockhttp", |
| 18 | + "docker:push": "docker push jaredwray/mockhttp", |
| 19 | + "docker:stop": "docker stop $(docker ps -a -q --filter ancestor=jaredwray/mockhttp --format=\"{{.ID}}\")", |
| 20 | + "docker:readme": "tsx ./scripts/create-docker-readme.ts", |
| 21 | + "docker:compose:up": "docker-compose up -d", |
| 22 | + "docker:compose:down": "docker-compose down", |
| 23 | + "prepare": "pnpm run build", |
| 24 | + "start": "node dist/index.js" |
| 25 | + }, |
| 26 | + "repository": { |
| 27 | + "type": "git", |
| 28 | + "url": "git+https://github.com/jaredwray/mockhttp.git" |
| 29 | + }, |
| 30 | + "keywords": [ |
| 31 | + "mock", |
| 32 | + "http", |
| 33 | + "httpbin", |
| 34 | + "test" |
| 35 | + ], |
| 36 | + "author": "Jared Wray <me@jaredwray.com>", |
| 37 | + "license": "MIT", |
| 38 | + "bugs": { |
| 39 | + "url": "https://github.com/jaredwray/mockhttp/issues" |
| 40 | + }, |
| 41 | + "homepage": "https://github.com/jaredwray/mockhttp#readme", |
| 42 | + "devDependencies": { |
| 43 | + "@biomejs/biome": "^2.2.2", |
| 44 | + "@swc/core": "^1.13.4", |
| 45 | + "@types/html-escaper": "^3.0.4", |
| 46 | + "@vitest/coverage-v8": "^3.2.4", |
| 47 | + "rimraf": "^6.0.1", |
| 48 | + "tsup": "^8.5.0", |
| 49 | + "tsx": "^4.20.4", |
| 50 | + "typescript": "^5.9.2", |
| 51 | + "vitest": "^3.2.4" |
| 52 | + }, |
| 53 | + "dependencies": { |
| 54 | + "@fastify/cookie": "^11.0.2", |
| 55 | + "@fastify/helmet": "^13.0.1", |
| 56 | + "@fastify/static": "^8.2.0", |
| 57 | + "@fastify/swagger": "^9.5.1", |
| 58 | + "@fastify/swagger-ui": "^5.2.3", |
| 59 | + "@scalar/api-reference": "^1.34.4", |
| 60 | + "detect-port": "^2.1.0", |
| 61 | + "fastify": "^5.5.0", |
| 62 | + "hookified": "^1.12.0", |
| 63 | + "html-escaper": "^3.0.3", |
| 64 | + "pino": "^9.9.0", |
| 65 | + "pino-pretty": "^13.1.1" |
| 66 | + }, |
| 67 | + "files": [ |
| 68 | + "dist", |
| 69 | + "public", |
| 70 | + "LICENCE" |
| 71 | + ], |
| 72 | + "pnpm": { |
| 73 | + "onlyBuiltDependencies": [ |
| 74 | + "@swc/core", |
| 75 | + "unrs-resolver", |
| 76 | + "vue-demi" |
| 77 | + ] |
| 78 | + } |
84 | 79 | } |
0 commit comments