forked from shimataro/babel-plugin-module-extension-resolver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.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-rc.1",
"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",
"scripts": {
"build": "tsc",
"check-updates": "ncu",
"lint": "run-p lint:*",
"lint:ts": "eslint ./src --ext .ts",
"lint:md": "markdownlint . --ignore node_modules --ignore examples",
"lint:yaml": "yamllint .*.yml *.yml --ignore=node_modules/**/*.yml --ignore=node_modules/**/*.yaml",
"verify": "run-p lint"
},
"devDependencies": {
"@babel/core": "7.8.4",
"@types/babel__core": "7.1.4",
"@types/node": "13.7.1",
"@typescript-eslint/eslint-plugin": "2.19.2",
"@typescript-eslint/parser": "2.19.2",
"eslint": "6.8.0",
"eslint-plugin-import": "2.20.1",
"markdownlint-cli": "0.22.0",
"npm-check-updates": "4.0.1",
"npm-run-all": "4.1.5",
"typescript": "3.7.5",
"yaml-lint": "1.2.4"
},
"engines": {
"node": ">=6.9.0"
}
}