-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.35 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
{
"name": "babel-plugin-module-extension-resolver",
"version": "1.0.0",
"description": "Babel plugin that resolves and maps module extensions.",
"keywords": [
"babel",
"babel-plugin"
],
"homepage": "https://github.com/shimataro/babel-plugin-module-extension-resolver",
"bugs": {
"url": "https://github.com/shimataro/babel-plugin-module-extension-resolver/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/shimataro/babel-plugin-module-extension-resolver.git"
},
"license": "MIT",
"main": "./dist/index",
"engines": {
"node": ">=6.9.0"
},
"scripts": {
"build": "tsc",
"check-updates": "ncu",
"lint": "run-p lint:*",
"lint:md": "markdownlint . --ignore node_modules --ignore examples",
"lint:ts": "eslint ./src --ext .ts",
"lint:yaml": "yamllint .*.yml *.yml --ignore=node_modules/**/*.yml --ignore=node_modules/**/*.yaml",
"verify": "run-p lint"
},
"devDependencies": {
"@babel/core": "7.20.7",
"@types/babel__core": "7.1.20",
"@types/node": "18.11.17",
"@typescript-eslint/eslint-plugin": "5.47.0",
"@typescript-eslint/parser": "5.47.0",
"eslint": "8.30.0",
"eslint-plugin-import": "2.26.0",
"markdownlint-cli": "0.32.2",
"npm-check-updates": "16.6.2",
"npm-run-all": "4.1.5",
"typescript": "4.9.4",
"yaml-lint": "1.7.0"
}
}