-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.26 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
{
"name": "blind-date",
"version": "3.4.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.prod.json",
"clean": "rimraf dist",
"release": "pnpm clean && pnpm build && pnpm test && pnpm exec changeset publish && pnpm install",
"release:version": "pnpm changeset version && pnpm install",
"test": "pnpm run test:nz && pnpm run test:us && pnpm run test:utc",
"test:nz": "TZ=Pacific/Auckland jest",
"test:us": "TZ=America/Los_Angeles jest",
"test:utc": "TZ=UTC jest",
"watch": "tsc --watch"
},
"author": "Cactuslab",
"license": "Apache-2.0",
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@types/jest": "^29.5.14",
"@types/luxon": "^3.4.2",
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"dayjs": "^1.11.13",
"eslint": "^7.30.0",
"eslint-plugin-jest": "^24.7.0",
"jest": "^29.7.0",
"luxon": "^3.5.0",
"moment": "^2.30.1",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cactuslab/blind-date.git"
},
"publishConfig": {
"access": "public"
}
}