1 | {
|
2 | "name": "eslint-import-resolver-babel-module",
|
3 | "version": "5.3.2",
|
4 | "main": "lib/index.js",
|
5 | "description": "babel-plugin-module-resolver resolver for eslint-plugin-import",
|
6 | "repository": {
|
7 | "type": "git",
|
8 | "url": "https://github.com/tleunen/eslint-import-resolver-babel-module.git"
|
9 | },
|
10 | "engines": {
|
11 | "node": ">=10.0.0"
|
12 | },
|
13 | "files": [
|
14 | "lib"
|
15 | ],
|
16 | "author": "Tommy Leunen <tommy.leunen@gmail.com> (https://tommyleunen.com)",
|
17 | "license": "MIT",
|
18 | "keywords": [
|
19 | "eslint",
|
20 | "eslint-plugin-import",
|
21 | "eslint-import-resolver",
|
22 | "babel",
|
23 | "babel-plugin",
|
24 | "module",
|
25 | "resolver",
|
26 | "alias",
|
27 | "rewrite",
|
28 | "resolve",
|
29 | "rename",
|
30 | "mapping",
|
31 | "require",
|
32 | "import"
|
33 | ],
|
34 | "dependencies": {
|
35 | "pkg-up": "^3.1.0",
|
36 | "resolve": "^1.20.0"
|
37 | },
|
38 | "devDependencies": {
|
39 | "@babel/cli": "^7.13.14",
|
40 | "@babel/core": "^7.13.15",
|
41 | "@babel/preset-env": "^7.13.15",
|
42 | "babel-core": "^7.0.0-0",
|
43 | "babel-jest": "^26.6.3",
|
44 | "babel-plugin-module-resolver": "^5.0.0",
|
45 | "eslint": "^7.24.0",
|
46 | "jest": "^26.6.3",
|
47 | "lodash": "^4.17.21",
|
48 | "standard-version": "^9.2.0"
|
49 | },
|
50 | "peerDependencies": {
|
51 | "@babel/core": "^7.0.0-0",
|
52 | "babel-plugin-module-resolver": "^3.0.0 || ^4.0.0 || ^5.0.0"
|
53 | },
|
54 | "scripts": {
|
55 | "lint": "eslint src test",
|
56 | "compile": "babel src --out-dir lib",
|
57 | "pretest": "npm run lint",
|
58 | "test": "jest",
|
59 | "test:coverage": "jest --coverage",
|
60 | "test:watch": "jest --watch",
|
61 | "prepare": "npm run compile",
|
62 | "release": "standard-version"
|
63 | },
|
64 | "jest": {
|
65 | "testEnvironment": "node",
|
66 | "testRegex": "/test/.*\\.test\\.js$",
|
67 | "collectCoverageFrom": [
|
68 | "src/**/*.js"
|
69 | ]
|
70 | },
|
71 | "greenkeeper": {
|
72 | "ignore": [
|
73 | "babel-jest",
|
74 | "eslint",
|
75 | "eslint-plugin-import"
|
76 | ]
|
77 | }
|
78 | }
|