-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.54 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.54 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
{
"name": "babel-plugin-module-import",
"description": "Add extra module imports for babel",
"keywords": [
"babel",
"babel plugin",
"module import"
],
"main": "lib/index.js",
"scripts": {
"compile": "tsc",
"lint": "eslint src",
"test": "vitest",
"coverage": "c8 --reporter=lcov vitest run --coverage",
"lint-staged": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bundle-matters/babel-plugin-module-import.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/bundle-matters/babel-plugin-module-import/issues"
},
"homepage": "https://github.com/bundle-matters/babel-plugin-module-import#readme",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/types": "^7.20.7",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/babel__core": "^7.20.0",
"@types/babel__helper-module-imports": "^7.18.0",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"c8": "^7.11.2",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"semantic-release": "^19.0.2",
"typescript": "^4.6.4",
"vitest": "^0.10.2"
},
"lint-staged": {
"*.{ts,js}": "eslint --cache --fix",
"*.{ts,js,css,md}": "prettier --write"
},
"dependencies": {
"@babel/helper-module-imports": "^7.18.6",
"@babel/traverse": "^7.20.13"
}
}