-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
63 lines (63 loc) · 2 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
{
"name": "jest-editor-support",
"version": "32.0.0-beta.1",
"repository": {
"type": "git",
"url": "https://github.com/jest-community/jest-editor-support"
},
"license": "MIT",
"main": "build/index.js",
"scripts": {
"clean": "rimraf ./build ./index.d.ts",
"build": "tsc --noEmit",
"build:types": "dts-bundle-generator -o ./index.d.ts src/index.ts --project ./tsconfig.types.json",
"build:prod": "yarn clean & tsc -p tsconfig.prod.json",
"prepublish": "yarn build:prod && yarn build:types",
"test": "jest",
"lint": "eslint \"?(__mocks__|src|tests)/**/*.+(js|ts)\" ",
"lint:fix": "eslint \"?(__mocks__|src|tests)/**/*.+(js|ts)\" --fix",
"ci": "yarn build && yarn lint && yarn test --coverage",
"prettier": "prettier --check \"?(__mocks__|src|tests)/**/*.+(js|ts)\" ",
"prettier-write": "prettier --write",
"prettier-project": "yarn prettier-write \"?(__mocks__|src|tests)/**/*.+(js|ts)\" "
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@types/jest": "^29.2.4",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"dts-bundle-generator": "^9.5.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.3.1",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
},
"dependencies": {
"@babel/parser": "^7.20.7",
"@babel/traverse": "7.23.2",
"@babel/types": "^7.20.7",
"@jest/snapshot-utils": "^30.0.0-alpha.5",
"@jest/test-result": "^29.3.1",
"@jest/types": "^29.3.1",
"jest-snapshot": "^30.0.0-alpha.5"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/build/",
"<rootDir>/fixtures/"
],
"coveragePathIgnorePatterns": [
"<rootDir>/fixtures/"
]
},
"typings": "index.d.ts"
}