forked from lduburas/ts-transformer-dates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.4 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
{
"name": "@alcs/ts-transformer-dates",
"version": "2.0.0",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"packageManager": "[email protected]",
"publishConfig": {
"access": "public",
"directory": "prepared-package"
},
"scripts": {
"build": "tsc",
"test": "jest --config jestconfig.json",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint .",
"prepare": "pnpm build",
"prepublishOnly": "pnpm test && pnpm lint && rimraf ./prepared-package && pnpm clean-publish",
"preversion": "pnpm lint",
"version": "pnpm format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fracht/ts-transformer-dates.git"
},
"keywords": [
"Date",
"JSON",
"TypeScript"
],
"author": "lduburas",
"license": "MIT",
"files": [
"lib/**/*"
],
"devDependencies": {
"@sirse-dev/eslint-config": "^3.0.5",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.2",
"clean-publish": "^4.2.0",
"configs": "github:fracht/configs",
"eslint": "^8.43.0",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.0",
"typescript": "^5.1.5",
"typescript2": "npm:[email protected]",
"typescript3": "npm:[email protected]",
"typescript4": "npm:[email protected]",
"typescript5": "npm:typescript@^5.1.6"
},
"peerDependencies": {
"typescript": ">=2.4.1"
}
}