forked from jest-community/jest-editor-support
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.62 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.62 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
{
"name": "jest-editor-support",
"version": "31.0.1",
"repository": {
"type": "git",
"url": "https://github.com/jest-community/jest-editor-support"
},
"license": "MIT",
"main": "build/index.js",
"lint-staged": {
"*.json": [
"git add"
],
"*.js": "eslint --cache --fix"
},
"scripts": {
"build": "babel src/ -d build/ --extensions \".js,.ts\" --source-maps inline",
"build:types": "tsc --emitDeclarationOnly && rm build/index.d.ts",
"prepublish": "yarn build:types && yarn build",
"test": "jest",
"flow": "flow",
"lint": "eslint \"?(__mocks__|src|tests)/**/*.+(js|ts)\" ",
"lint:fix": "eslint \"?(__mocks__|src|tests)/**/*.+(js|ts)\" --fix",
"ci": "yarn type-check && yarn lint && yarn test --coverage && yarn flow",
"prettier": "prettier --check \"?(__mocks__|src|tests)/**/*.+(js|ts)\" ",
"prettier-write": "prettier --write",
"prettier-project": "yarn prettier-write \"?(__mocks__|src|tests)/**/*.+(js|ts)\" ",
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check -- --watch",
"prepare": "husky install"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/eslint-plugin": "^7.19.1",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-flow": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@jest/types": "^29.3.1",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.16",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"babel-jest": "^29.3.1",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"flow-bin": "^0.196.0",
"husky": ">=7.0.2",
"jest": "^29.3.1",
"lint-staged": ">=11.1.2",
"prettier": "^2.8.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@babel/parser": "^7.20.7",
"@babel/runtime": "^7.20.7",
"@babel/traverse": "7.20.10",
"@babel/types": "^7.20.7",
"core-js": "^3.17.3",
"jest-snapshot": "^27.2.0"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/build/",
"<rootDir>/fixtures/"
],
"coveragePathIgnorePatterns": [
"<rootDir>/fixtures/"
],
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"typings": "index.d.ts"
}