-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
68 lines (68 loc) · 1.58 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
{
"name": "tinyspy",
"type": "module",
"version": "3.0.2",
"packageManager": "[email protected]",
"description": "A minimal fork of nanospy, with more features",
"license": "MIT",
"homepage": "https://github.com/tinylibs/tinyspy#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tinylibs/tinyspy.git"
},
"bugs": {
"url": "https://github.com/tinylibs/tinyspy/issues"
},
"keywords": [
"spy",
"mock",
"typescript",
"method"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"prepare": "husky",
"publish-test": "clean-publish --without-publish",
"release": "bumpp package.json --commit --push --tag && tsup && clean-publish",
"test": "vitest --no-isolate"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^11.1.4",
"@size-limit/time": "^11.1.4",
"bumpp": "^9.4.1",
"changelogithub": "^0.13.10",
"clean-publish": "^4.4.0",
"happy-dom": "^14.11.0",
"husky": "^9.0.11",
"nano-staged": "^0.8.0",
"prettier": "^3.2.5",
"size-limit": "^11.1.4",
"tinyspy": "*",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vite": "^5.2.1",
"vitest": "^1.6.0"
}
}