-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.25 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.25 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "tsconfig-paths-hook",
"description": "hooks to use tsconfig-paths directly as a ast transformer of jest or ttypescript",
"version": "0.1.2",
"author": {
"name": "Thiago O Santos <tos.oliveira@gmail.com>"
},
"engines": {
"node": ">=10"
},
"files": [
"dist",
"transformer.js"
],
"main": "transformer.js",
"scripts": {
"lint": "npm run lint:format && npm run lint:style",
"lint:fix": "npm run lint:format:fix && npm run lint:style:fix",
"build": "tsc -p tsconfig.build.json",
"test": "jest test/unit",
"test:watch": "jest test/unit --watch",
"test:coverage": "jest test/unit --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest test/e2e",
"clear": "npm run clear:build && npm run clear:modules",
"clear:build": "del-cli ./dist",
"clear:modules": "del-cli ./node_modules",
"prebuild": "npm run clear:build && del-cli tsconfig.tsbuildinfo",
"preaction:verify:update-modules": "npm run action:verify:update-modules:check",
"action:verify:update-modules": "npm run action:verify:update-modules:reinstall && npm run action:verify:update-modules:clean",
"action:verify:update-modules:clean": "del-cli .check",
"lint:format": "prettier --check \"{src,test}/**/*.ts\" \"*.js\"",
"lint:format:fix": "prettier --write \"{src,test}/**/*.ts\" \"*.js\"",
"lint:style": "eslint \"**/*.[tj]s\"",
"lint:style:fix": "eslint \"**/*.[tj]s\" --fix",
"prepare": "husky install",
"prepublishOnly": "npm run build"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"preset": "ts-jest",
"coverageDirectory": "./coverage",
"collectCoverageFrom": [
"./src/**/*.ts"
],
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./test/jest-setup.ts"
]
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/codibre/tsconfig-paths-hook.git"
},
"homepage": "https://github.com/codibre/tsconfig-paths-hook#readme",
"bugs": {
"url": "https://github.com/codibre/tsconfig-paths-hook/issues"
},
"keywords": [
"ast",
"transformer",
"asttransformer",
"jest",
"ttypescript",
"tsconfig-paths",
"paths",
"alias"
],
"license": "MIT",
"devDependencies": {
"@codibre/confs": "^1.1.2",
"@nestjs/cli": "^9.3.0",
"@types/eslint": "^8.37.0",
"@types/jest": "^27.4.1",
"@types/lint-staged": "^13.3.0",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"del-cli": "^3.0.1",
"eslint": "^8.0.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"jest": "^29.5.0",
"jest-callslike": "^0.2.1",
"jest-extended": "^2.0.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-jest": "^29.1.0",
"ts-loader": "^9.2.7",
"ts-node": "^10.6.0",
"typedoc-plugin-markdown": "^3.12.1",
"typescript": "~5.0.0"
},
"dependencies": {
"tsconfig-paths": "^4.2.0"
}
}