-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·80 lines (80 loc) · 1.54 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
{
"name": "test-quadruple",
"version": "0.3.0",
"description": "Simple and declarative mocks, spies, and replacements.",
"keywords": [
"nodejs",
"mock",
"mocking",
"test",
"testing",
"unit",
"unit-test",
"tdd",
"stub",
"spy",
"faking",
"fakes",
"replace",
"replacements",
"substitute",
"testdouble",
"testtriple",
"sinon",
"esmock"
],
"license": "MIT",
"repository": "tommy-mitchell/test-quadruple",
"author": {
"name": "Tommy Mitchell",
"url": "https://tommymitchell.io"
},
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": "^18.19 || ^20.8 || >=21"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc -p tsconfig.build.json && tsup && dprint fmt --excludes '!dist'",
"lint": "xo",
"format": "dprint fmt && xo --fix",
"test": "c8 ava && npm run test:types",
"test:types": "npm run build && tsd -t dist/index.d.ts"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--import=tsimp"
]
},
"dependencies": {
"esmock": "^2.6.7",
"map-obj": "^5.0.2"
},
"devDependencies": {
"@tommy-mitchell/dprint-config": "^0.4.0",
"@tommy-mitchell/eslint-config-xo": "^0.6.0",
"@tommy-mitchell/tsconfig": "^2.1.0",
"@types/node": "18.18",
"ava": "^6.1.3",
"c8": "^10.1.2",
"dprint": "^0.47.2",
"meow": "^13.2.0",
"ts-pattern": "^5.3.1",
"tsd": "^0.31.1",
"tsimp": "^2.0.11",
"tsup": "^8.2.4",
"type-fest": "^4.25.0",
"typescript": "~5.5.4",
"xo": "^0.59.3"
}
}