-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.82 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
{
"name": "@bitpatty/ts-transformer-log-position",
"version": "3.0.0",
"description": "Injects the position of log statements into the log messages at build time",
"author": "Matteias Collet <matteias.collet@bluewin.ch>",
"main": "dist/index.js",
"scripts": {
"prepare": "ts-patch install -s",
"build": "rimraf dist && rollup -c",
"deps:force-upgrade": "npm-check-updates -u && rm -rf node_modules && rm -f package-lock.json && npm i",
"docs": "typedoc src/index.ts",
"format": "prettier --write \"{src,test}/**/*.ts\" ",
"lint": "eslint --fix \"{test,src}/**/*.{js,ts}\"",
"pretest": "npm run build && jest --clearCache",
"test": "jest --verbose --runInBand --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/BitPatty/ts-transformer-log-position.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/BitPatty/ts-transformer-log-position/issues"
},
"files": [
"dist"
],
"keywords": [
"transformer",
"typescript",
"logging",
"debug"
],
"types": "./dist/index.d.ts",
"homepage": "https://github.com/BitPatty/ts-transformer-log-position#readme",
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "22.10.5",
"@typescript-eslint/eslint-plugin": "8.19.1",
"@typescript-eslint/parser": "8.19.1",
"@typescript/vfs": "1.6.0",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "28.10.0",
"eslint-plugin-prettier": "5.2.1",
"jest-diff": "29.7.0",
"npm-check-updates": "17.1.13",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"rollup": "4.30.1",
"rollup-plugin-typescript2": "0.36.0",
"ts-jest": "29.2.5",
"ts-patch": "3.3.0",
"tslib": "2.8.1",
"typescript": "5.7.3"
},
"peerDependencies": {
"typescript": ">=5.0.2"
}
}