forked from VitorLuizC/ts-jest-resolver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.78 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
{
"name": "ts-jest-resolver",
"version": "2.0.0",
"description": "A resolver for `jest` that uses same strategy as TS when resolving files with JavaScript extension (\".js\").",
"main": "./dist/index.js",
"types": "./types/index.d.ts",
"module": "./dist/index.esm.js",
"files": [
"dist/",
"types/"
],
"exports": {
".": [
{
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./dist/index.js"
]
},
"dependencies": {
"jest-resolve": "^27.2.5"
},
"devDependencies": {
"@types/eslint": "^7.28.1",
"@types/jest": "^27.0.2",
"@types/prettier": "^2.4.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.5",
"prettier": "^2.4.1",
"rollup": "^2.58.0",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"scripts": {
"test": "npm run build && npm run test:lint && npm run test:unit",
"test:lint": "eslint \"*/**/*.{ts,js,json}\"",
"test:unit": "jest",
"lint": "eslint \"*/**/*.{ts,js,json}\" --fix",
"build": "rollup --config ./rollup.config.js",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VitorLuizC/ts-jest-resolver.git"
},
"keywords": [
"jest",
"jest-resolver",
"ts-jest",
"typescript",
"ts-jest-resolver"
],
"author": {
"name": "Vitor Luiz Cavalcanti"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/VitorLuizC/ts-jest-resolver/issues"
},
"homepage": "https://github.com/VitorLuizC/ts-jest-resolver#readme"
}