-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.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
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
{
"name": "jest-react-reporter",
"version": "4.0.1",
"description": "Reporter for Jest written in React",
"repository": "jest-community/jest-react-reporter",
"license": "MIT",
"author": "Simen Bekkhus <sbekkhus91@gmail.com>",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"files": [
"dist/"
],
"scripts": {
"ncc-build": "ncc build src/index.ts --external @jest/reporters --external react-devtools-core --external yoga-layout-prebuilt",
"build": "yarn ncc-build --minify --no-source-map-register",
"build:watch": "yarn ncc-build --watch",
"lint": "eslint . --ignore-pattern '!.eslintrc.js'",
"prepare": "husky && yarn build",
"prettylint": "prettier README.md package.json --check",
"test": "jest",
"typecheck": "tsc -p . --noEmit"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --fix",
"*.{md,json}": "prettier --write"
},
"prettier": {
"arrowParens": "avoid",
"endOfLine": "auto",
"proseWrap": "always",
"singleQuote": true,
"trailingComma": "all"
},
"jest": {
"preset": "ts-jest",
"reporters": [
"<rootDir>/"
],
"testEnvironment": "node"
},
"dependencies": {
"@jest/reporters": "^29.0.2",
"yoga-layout-prebuilt": "^1.10.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@jest/test-result": "^29.0.2",
"@jest/types": "^29.0.2",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@tsconfig/node14": "^14.1.2",
"@types/jest": "^29.0.0",
"@types/node": "^14.0.0",
"@types/react": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@vercel/ncc": "^0.38.0",
"chalk": "^4.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^27.0.0",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^4.0.2",
"husky": "^9.0.0",
"ink": "^3.2.0",
"jest": "^29.0.2",
"jest-util": "^29.0.2",
"lint-staged": "^13.0.0",
"prettier": "^3.0.0",
"react": "^18.0.0",
"semantic-release": "^23.0.0",
"slash": "^3.0.0",
"ts-jest": "^29.0.0",
"typescript": "^4.0.0"
},
"peerDependencies": {
"jest": "^27.0.0 || ^28.0.0 || ^29.0.0"
},
"engines": {
"node": ">=14"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"packageManager": "yarn@3.8.7"
}