-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 868 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 868 Bytes
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
{
"name": "esbuild-node",
"version": "0.5.1",
"description": "Transform and execute node scripts with esbuild",
"author": "eigilsagafos",
"homepage": "https://github.com/shiftx/esbuild-node",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shiftx/esbuild-node.git"
},
"keywords": [
"esbuild",
"node"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"bin": "./bin/esbuild-node.js",
"files": [
"src/esbuild-node.js"
],
"scripts": {
"release": "release-it"
},
"peerDependencies": {
"esbuild": ">=0.6.0"
},
"devDependencies": {
"esbuild": "0.7.15",
"release-it": "14.1.0",
"jest": "27.3.1",
"ts-jest": "27.0.7",
"typescript": "4.4.4"
}
}