-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.03 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
{
"name": "esgleam",
"version": "0.2.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "github:bwireman/esgleam",
"homepage": "https://github.com/bwireman/esgleam#readme",
"author": {
"name": "Ben Wireman",
"url": "http://benwireman.com/"
},
"license": "MIT",
"dependencies": {
"toml": "^3.0.0"
},
"bugs": {
"url": "https://github.com/bwireman/esgleam/issues"
},
"scripts": {
"clean": "rm -rf dist",
"prepublish": "tsc",
"lint": "eslint index.ts --ext .ts --fix",
"ci": "eslint index.ts --ext .ts",
"test": "cd example && yarn && yarn test"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"esbuild": "^0.14.51",
"eslint": "^8.17.0",
"typescript": "^4.7.3"
},
"peerDependencies": {
"esbuild": "^0.14.51"
},
"keywords": [
"gleam",
"esbuild",
"plugin",
"bundler"
]
}