-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·102 lines (102 loc) · 2.55 KB
/
package.json
File metadata and controls
executable file
·102 lines (102 loc) · 2.55 KB
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
{
"name": "@superdispatch/http",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/superdispatch/http.git"
},
"scripts": {
"build": "lerna run version --no-private",
"lint": "js-tools lint",
"prerelease": "pnpm install && pnpm tsc && pnpm lint && pnpm test",
"release": "lerna publish",
"size": "pnpm build && size-limit",
"tdd": "jest --watch",
"test": "jest --coverage --forceExit",
"prepare": "husky install"
},
"lint-staged": {
"*": [
"js-tools lint --fix"
]
},
"prettier": "@superdispatch/prettier-config",
"jest": {
"clearMocks": true,
"coverageDirectory": "coverage",
"coveragePathIgnorePatterns": [
"/__testutils__/",
"/node_modules/"
],
"modulePathIgnorePatterns": [
".+/pkg/.+"
],
"resetMocks": true,
"roots": [
"<rootDir>/packages/uri/",
"<rootDir>/packages/http/"
],
"setupFilesAfterEnv": [
"<rootDir>/setupTests.ts"
],
"testEnvironment": "jsdom",
"transform": {
"\\.tsx?$": "babel-jest"
},
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
},
"devDependencies": {
"@pika/pack": "0.5.0",
"@pika/plugin-build-node": "0.9.2",
"@pika/plugin-build-types": "0.9.2",
"@pika/plugin-build-web": "0.9.2",
"@pika/plugin-bundle-types": "0.9.2",
"@pika/plugin-standard-pkg": "0.9.2",
"@size-limit/preset-small-lib": "5.0.5",
"@superdispatch/babel-preset": "0.5.0",
"@superdispatch/eslint-plugin": "0.5.0",
"@superdispatch/hooks": "0.12.0",
"@superdispatch/js-tools": "0.5.0",
"@superdispatch/prettier-config": "0.5.0",
"@superdispatch/tsconfig": "0.5.0",
"@types/jest": "27.5.2",
"@types/node-fetch": "2.6.2",
"babel-jest": "27.5.1",
"babel-plugin-dev-expression": "0.2.3",
"eslint": "7.32.0",
"husky": "7.0.4",
"jest": "27.5.1",
"jest-watch-typeahead": "1.1.0",
"lerna": "4.0.0",
"lint-staged": "11.2.6",
"node-fetch": "2.6.7",
"prettier": "2.7.1",
"size-limit": "5.0.5",
"typescript": "4.6.4",
"uritemplate-test": "https://github.com/uri-templates/uritemplate-test"
},
"pnpm": {
"overrides": {
"rollup-plugin-dts": "^3.0.2"
}
},
"engines": {
"node": ">=24"
},
"resetMocks": true,
"size-limit": [
{
"path": "packages/uri/pkg/dist-web/index.js"
},
{
"ignore": [
"@superdispatch/uri"
],
"path": "packages/http/pkg/dist-web/index.js"
}
]
}