UNPKG

1.25 kBJSONView Raw
1{
2 "name": "@shopify/jest-koa-mocks",
3 "version": "2.3.0-sk-next-beta.1",
4 "license": "MIT",
5 "description": "Utilities to easily stub Koa context and cookies",
6 "main": "index.js",
7 "types": "index.d.ts",
8 "scripts": {
9 "build": "tsc --p tsconfig.json"
10 },
11 "publishConfig": {
12 "access": "public",
13 "@shopify:registry": "https://registry.npmjs.org"
14 },
15 "author": "Shopify Inc.",
16 "repository": {
17 "type": "git",
18 "url": "git+https://github.com/Shopify/quilt.git",
19 "directory": "packages/jest-koa-mocks"
20 },
21 "bugs": {
22 "url": "https://github.com/Shopify/quilt/issues"
23 },
24 "homepage": "https://github.com/Shopify/quilt/blob/master/packages/jest-koa-mocks/README.md",
25 "dependencies": {
26 "koa": "^2.5.0",
27 "node-mocks-http": "^1.5.8",
28 "tslib": "^1.14.1"
29 },
30 "devDependencies": {
31 "@types/express": "^4.11.1",
32 "@types/koa": "^2.0.0"
33 },
34 "sideEffects": false,
35 "files": [
36 "build/*",
37 "!tsconfig.tsbuildinfo",
38 "index.js",
39 "index.mjs",
40 "index.esnext",
41 "index.d.ts"
42 ],
43 "module": "index.mjs",
44 "esnext": "index.esnext",
45 "exports": {
46 "./": "./",
47 ".": {
48 "import": "./index.mjs",
49 "require": "./index.js",
50 "esnext": "./index.esnext"
51 }
52 }
53}