-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.44 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
47
{
"name": "esbuild-shake-tsyringe-tree",
"version": "0.1.3",
"description": "This plugin is designed to shake tree (remove code unused) mainly with the lib tsyringe. Attention: Currently only works with ES Module (.mjs)",
"engines": {
"node": ">=14.x"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "https://github.com/luisdemarchi/esbuild-shake-tsyringe-tree.git"
},
"issue": "https://github.com/luisdemarchi/esbuild-shake-tsyringe-tree/issues",
"main": "index.js",
"scripts": {
"test": "jest",
"postversion": "git commit -m \"Bump package version to $npm_package_version\" package.json; git flow release start $npm_package_version; git flow release finish -m $npm_package_version $npm_package_version; git checkout develop; git merge master"
},
"keywords": [
"esbuild",
"shake-tree",
"tsyringe"
],
"author": "Luís De Marchi <[email protected]>",
"license": "BSD-3-Clause-Clear",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"esbuild": "^0.14.x || ^0.15.x"
},
"devDependencies": {
"@hughescr/eslint-config-default": "2.8.7",
"@types/jest": "29.0.3",
"eslint": "7.27.0",
"eslint-config-prettier": "8.5.0",
"prettier": "2.7.1",
"jest": "^29.0.3"
},
"dependencies": {
"@goto-bus-stop/common-shake": "^2.4.0",
"acorn": "^8.8.1",
"astring": "1.8.3",
"rollup": "^2.79.0",
"@rollup/plugin-virtual": "2.1.0"
}
}