forked from jest-community/jest-editor-support
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.54 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
{
"name": "jest-editor-support",
"version": "28.2.0",
"repository": {
"type": "git",
"url": "https://github.com/jest-community/jest-editor-support"
},
"license": "MIT",
"main": "build/index.js",
"lint-staged": {
"*.json": [
"yarn prettier-write --parser json",
"git add"
],
"*.js": [
"yarn prettier-write",
"git add"
]
},
"scripts": {
"build": "babel src/ -d build/ --extensions \".js,.ts\" --source-maps inline",
"build:types": "tsc --emitDeclarationOnly",
"prepublish": "yarn run 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"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^26.6.3",
"coveralls": "^3.0.3",
"danger": "^10.5.4",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-config-prettier": "^4.2.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^3.6.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-prettier": "^3.0.1",
"flow-bin": "^0.97.0",
"jest": "^26.6.3",
"lint-staged": "^8.1.5",
"prettier": "^2.3.0",
"typescript": "^3.8.2"
},
"dependencies": {
"@babel/parser": "^7.8.3",
"@babel/traverse": "^7.6.2",
"@babel/types": "^7.8.3",
"@jest/types": "^26.6.2",
"core-js": "^3.2.1",
"jest-snapshot": "^26.6.2"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/build/",
"<rootDir>/fixtures/"
],
"coveragePathIgnorePatterns": [
"<rootDir>/fixtures/"
],
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"typings": "index.d.ts"
}