-
Notifications
You must be signed in to change notification settings - Fork 205
/
Copy pathpackage.json
86 lines (86 loc) · 1.97 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": "babel-plugin-module-resolver",
"version": "4.0.0",
"main": "lib/index.js",
"description": "Module resolver plugin for Babel",
"repository": {
"type": "git",
"url": "https://github.com/tleunen/babel-plugin-module-resolver.git"
},
"engines": {
"node": ">= 8.0.0"
},
"files": [
"lib"
],
"author": {
"name": "Tommy Leunen",
"email": "tommy.leunen@gmail.com",
"url": "http://tommyleunen.com"
},
"license": "MIT",
"keywords": [
"babel",
"babel-plugin",
"module",
"resolver",
"alias",
"rewrite",
"resolve",
"rename",
"mapping",
"require",
"import"
],
"dependencies": {
"find-babel-config": "^1.2.0",
"glob": "^7.1.6",
"pkg-up": "^3.1.0",
"reselect": "^4.0.0",
"resolve": "^1.13.1"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"common-tags": "^1.8.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"prettier-eslint-cli": "^5.0.0",
"standard-version": "^8.0.1"
},
"scripts": {
"lint": "eslint src test",
"compile": "babel src --out-dir lib",
"pretest": "npm run lint",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"prepublish": "npm run compile",
"release": "standard-version",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js}": [
"prettier-eslint --write",
"git add"
]
},
"jest": {
"testEnvironment": "node",
"testRegex": "/test/.*\\.test\\.js$",
"collectCoverageFrom": [
"src/**/*.js",
"!src/log.js"
]
}
}