-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.72 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "trampoline-ts",
"version": "1.1.0",
"main": "dist/src/index.js",
"description": "A type-safe way to emulate tail-call optimization with trampolines",
"types": "dist/src/index.d.ts",
"author": "Kyle Schattler",
"license": "MIT",
"keywords": [
"trampoline",
"recursion",
"tail call",
"typesafe",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kschat/trampoline-ts.git"
},
"bugs": {
"url": "https://github.com/kschat/trampoline-ts/issues"
},
"homepage": "https://github.com/kschat/trampoline-ts#readme",
"scripts": {
"prepublishOnly": "pnpm run build",
"prepare": "husky install",
"build": "tsc",
"format-base": "prettier --log-level warn",
"format": "pnpm run format-base --check .",
"format-fix": "pnpm run format-base --write .",
"lint-base": "eslint --ext .ts,.js --max-warnings 0 --report-unused-disable-directives",
"lint": "pnpm run lint-base .",
"lint-fix": "pnpm run lint-base --fix .",
"test": "jest",
"test-ci": "./scripts/test-ci.sh"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"pnpm run format-base --fix -u",
"pnpm run lint-base --fix"
],
"!**/*.{js,ts,jsx,tsx}": "pnpm run format-base --fix -u"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/git"
]
},
"jest": {
"collectCoverage": true,
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"<rootDir>/test/**/*.spec.ts"
],
"verbose": true
},
"devDependencies": {
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.1",
"@semantic-release/npm": "^11.0.0",
"@semantic-release/release-notes-generator": "^12.0.0",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"conditional-type-checks": "^1.0.6",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"semantic-release": "^22.0.5",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}