forked from JoinColony/eslint-import-resolver-jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.04 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
{
"name": "eslint-import-resolver-jest",
"version": "2.1.1",
"description": "🃏 Jest import resolution plugin for eslint-plugin-import",
"main": "lib/index.js",
"scripts": {
"build": "yarn run build:flow && yarn run build:lib",
"build:flow": "flow-copy-source src lib --ignore '__tests__/*.js'",
"build:lib": "flow-remove-types src/index.js > lib/index.js",
"flow": "flow check",
"lint": "eslint index.js __tests__/*.js",
"prepublish": "yarn test && yarn run build",
"test": "yarn run flow && yarn run lint && jest",
"test:unit": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/JoinColony/eslint-import-resolver-jest"
},
"keywords": [
"eslint",
"eslintplugin",
"jest",
"resolver",
"eslint-plugin-import"
],
"author": "Christian Maniewski <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JoinColony/eslint-import-resolver-jest/issues"
},
"homepage": "https://github.com/JoinColony/eslint-import-resolver-jest",
"dependencies": {
"find-root": "^1.0.0",
"micromatch": "^3.1.6",
"resolve": "^1.5.0"
},
"files": [
"lib",
"Readme.md",
"CODE_OF_CONDUCT.md",
"LICENSE",
"CHANGELOG.md"
],
"peerDependencies": {
"eslint-plugin-import": ">=1.4.0"
},
"devDependencies": {
"@colony/eslint-config-colony": "^4.0.1",
"babel-eslint": "^8.2.1",
"eslint": "^4.17.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.44.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.6.0",
"flow-bin": "^0.67.1",
"flow-copy-source": "^1.3.0",
"flow-remove-types": "^1.2.3",
"jest": "^22.3.0",
"jest-flow-transform": "^1.0.1",
"jest-sandbox": "^1.1.1",
"prettier": "^1.10.2"
},
"jest": {
"testMatch": [
"**/?(*.)test.js?(x)"
],
"testEnvironment": "node",
"collectCoverage": true,
"transform": {
"^.+\\.js(?:\\.flow)?$": "jest-flow-transform"
}
}
}