forked from thomaschaaf/esbuild-plugin-import-glob
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "esbuild-plugin-import-glob",
"version": "0.1.1",
"description": "A esbuild plugin which allows to import multiple files using the glob syntax.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "npm run clean && npm run compile",
"compile": "tsc -p tsconfig.json",
"clean": "rimraf ./dist",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thomaschaaf/esbuild-plugin-import-glob.git"
},
"keywords": [
"esbuild",
"esbuild-plugin",
"import",
"glob"
],
"author": "Thomas Schaaf <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thomaschaaf/esbuild-plugin-import-glob/issues"
},
"homepage": "https://github.com/thomaschaaf/esbuild-plugin-import-glob#readme",
"devDependencies": {
"@types/jest": "^26.0.20",
"esbuild": "^0.9.2",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"fast-glob": "^3.2.5"
}
}