-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·75 lines (75 loc) · 1.5 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
{
"name": "proxy-date",
"version": "0.9.1",
"description": "minimal utility for painless mocking Date in node.js and Proxy enabled browsers",
"main": "dist/proxy-date.cjs",
"module": "dist/proxy-date.js",
"types": "dist/proxy-date.d.cts",
"exports": {
".": {
"import": {
"default": "./dist/proxy-date.js",
"types": "./dist/proxy-date.d.ts"
},
"require": {
"default": "./dist/proxy-date.cjs",
"types": "./dist/proxy-date.d.cts"
}
}
},
"type": "module",
"scripts": {
"test": "vitest",
"prepublishOnly": "npm run build",
"build": "tsup",
"w": "vitest --watch"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/capaj/proxy-date.git"
},
"keywords": [
"mock",
"date",
"fake",
"time",
"freeze",
"stop",
"testing",
"keeper"
],
"author": "capajj@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/capaj/proxy-date/issues"
},
"homepage": "https://github.com/capaj/proxy-date#readme",
"devDependencies": {
"husky": "^9.0.11",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"tsup": "^8.0.2",
"vitest": "^1.6.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"tsup": {
"entry": [
"proxy-date.ts"
],
"splitting": false,
"sourcemap": true,
"format": [
"cjs",
"esm"
],
"dts": true,
"clean": true
}
}