-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 861 Bytes
/
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
{
"name": "esbuild-plugin-limit-size",
"version": "0.0.4",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && node build && tsc",
"pretest": "npm run build",
"test": "jest --watchAll",
"test:ci": "npm run pretest && jest --ci"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonambas/esbuild-plugin-limit-size.git"
},
"author": "Jon Ambas",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonambas/esbuild-plugin-limit-size/issues"
},
"homepage": "https://github.com/jonambas/esbuild-plugin-limit-size#readme",
"files": [
"dist"
],
"dependencies": {
"picocolors": "^1.0.0"
},
"devDependencies": {
"@types/node": "^18.0.3",
"esbuild": "^0.14.49",
"jest": "^28.1.3",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
}
}