-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "babel-plugin-esm-resolver",
"description": "A Babel plugin for resolving ESM import and export paths",
"version": "3.0.0",
"keywords": [
"babel",
"esm",
"es6",
"modules",
"resolve",
"resolver",
"import",
"export"
],
"main": "lib/index",
"engines": {
"node": ">=6.9.0"
},
"scripts": {
"clean": "rimraf lib",
"lint": "eslint .",
"format": "prettier -w .",
"formatted": "prettier -c .",
"build": "babel src --out-dir lib --source-maps true",
"test": "node ./lib/index.spec.js",
"all": "npm run clean && npm run build && npm run test && npm run lint && npm run formatted",
"prepack": "npm run clean && npm run build"
},
"repository": "https://github.com/AlexanderOMara/babel-plugin-esm-resolver.git",
"bugs": "https://github.com/AlexanderOMara/babel-plugin-esm-resolver/issues",
"author": "Alexander O'Mara",
"copyright": "Copyright (c) 2019-2024 Alexander O'Mara",
"license": "MPL-2.0",
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@eslint/js": "^9.8.0",
"@stylistic/eslint-plugin": "^2.6.1",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.11.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1"
}
}