-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
67 lines (67 loc) · 1.66 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
{
"name": "fork-ts-checker-notifier-webpack-plugin",
"version": "9.0.0",
"description": "a notifier for users of fork-ts-checker-webpack-plugin",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc --version && tsc",
"format": "prettier --check .",
"lint": "eslint --color --ext js,ts .",
"test": "jest"
},
"keywords": [
"webpack",
"fork-ts-checker-webpack-plugin",
"ts-loader",
"notifier"
],
"engines": {
"node": ">=16"
},
"author": "John Reilly <johnny_reilly@hotmail.com>",
"license": "MIT",
"repository": {
"url": "https://github.com/johnnyreilly/fork-ts-checker-notifier-webpack-plugin.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/johnnyreilly/fork-ts-checker-notifier-webpack-plugin/issues"
},
"dependencies": {
"node-notifier": "^10.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@types/node-notifier": "^8.0.5",
"@types/tapable": "^2.2.7",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0"
},
"peerDependencies": {
"fork-ts-checker-webpack-plugin": "^9.0.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}