-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.23 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
48
49
50
51
{
"name": "esbuild-plugin-license",
"version": "1.2.3",
"description": "esbuild plugin for generating license for your bundle",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"types": "./dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsup",
"dev": "tsup --watch"
},
"files": [
"dist"
],
"keywords": [
"license",
"esbuild"
],
"author": "Yiming Li",
"license": "MIT",
"bugs": {
"url": "https://github.com/upupming/esbuild-plugin-license/issues"
},
"homepage": "https://github.com/upupming/esbuild-plugin-license#readme",
"devDependencies": {
"@babel/core": "7.16.7",
"@babel/preset-env": "7.16.11",
"@babel/preset-typescript": "7.16.7",
"@chialab/esbuild-plugin-commonjs": "0.14.17",
"@types/jest": "27.4.0",
"@types/lodash-es": "4.17.5",
"@types/node": "17.0.9",
"esbuild": "0.14.11",
"jest": "27.4.7",
"lodash": "4.17.21",
"lodash-es": "4.17.21",
"normalize-package-data": "3.0.3",
"read-pkg-up": "9.0.0",
"tsup": "5.11.11",
"type-fest": "2.11.2",
"typescript": "4.5.4"
},
"peerDependencies": {
"esbuild": "*"
}
}