-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
108 lines (108 loc) · 2.77 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@zendesk/laika",
"version": "0.0.0-development",
"description": "Test, mock, intercept and modify Apollo Client's operations — in both browser and unit tests!",
"keywords": [
"apollo",
"apollo-client",
"graphql",
"mock",
"testing",
"test",
"apollo-link",
"link"
],
"bugs": {
"url": "https://github.com/zendesk/laika/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/zendesk/laika.git"
},
"engines": {
"node": ">=12.0.0"
},
"license": "Apache-2.0",
"author": "Zendesk <[email protected]>",
"sideEffects": false,
"exports": {
".": {
"import": "./esm/main.js",
"require": "./cjs/main.js"
},
"./*": {
"import": "./esm/*.js",
"require": "./cjs/*.js"
},
"./cjs": {
"require": "./cjs/main.js"
},
"./cjs/*": {
"require": "./cjs/*.js"
},
"./esm/*": {
"import": "./esm/*.js"
},
"./package.json": "./package.json"
},
"main": "cjs/main.js",
"module": "esm/main.js",
"source": "src/main.ts",
"scripts": {
"build": "yarn build:cjs && yarn build:esm",
"build:cjs": "yarn rrun tsc --outDir cjs --module commonjs --target es2015",
"build:esm": "yarn rrun tsc --outDir esm --module esnext --target es2015",
"clean": "git clean -dfX --exclude=node_modules src && beemo typescript:sync-project-refs",
"format": "yarn rrun prettier --write \"./{src,tests}/**/*.{js,jsx,ts,tsx,json,md}\"",
"postinstallDev": "yarn prepare",
"prepare": "rrun husky install .config/husky && beemo create-config",
"release": "beemo run-script release",
"test": "yarn test:format && yarn test:types && yarn test:lint && yarn test:code",
"test:code": "beemo jest",
"test:format": "yarn rrun prettier --check \"./{src,tests}/**/!(*.d).{.js,jsx,ts,tsx,json,md}\"",
"test:lint": "rrun eslint 'src/**'",
"test:types": "yarn rrun tsc --noEmit"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@apollo/client": "^3.8.1",
"@niieani/scaffold": "^1.5.0",
"@types/jest": "^27.5.1",
"@types/lodash": "^4.14.182",
"graphql": "^15.6.1 || ^16.0.0",
"graphql-tag": "^2.12.5",
"wait-for-observables": "^1.0.3"
},
"peerDependencies": {
"@apollo/client": ">=3.2.5"
},
"publishConfig": {
"access": "public"
},
"collaborators": [
"Bazyli Brzóska <[email protected]>"
],
"release": {
"tagFormat": "${version}",
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"master",
{
"name": "main",
"channel": false
},
"next",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
]
},
"packageManager": "[email protected]"
}