-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
egg.json
28 lines (28 loc) · 813 Bytes
/
egg.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
{
"$schema": "https://x.nest.land/eggs@0.3.10/src/schema.json",
"name": "types",
"version": "0.0.1",
"description": "Collection of TypeScript utilities and interfaces for Deno.",
"homepage": "https://github.com/deno911/typedefs",
"repository": "https://github.com/deno911/typedefs",
"releaseType": "patch",
"bump": "patch",
"entry": "./mod.ts",
"check": true,
"checkAll": true,
"checkFormat": "deno fmt",
"checkTests": "deno test --unstable --no-check -A",
"checkInstallation": true,
"unstable": true,
"unlisted": false,
"files": [
"./**/*.{ts,tsx,js,jsx,mjs,mts,json,jsonc}",
"./*.{ts,tsx,js,jsx,mjs,json,jsonc}",
"./{LICENSE,README.md}"
],
"ignore": [
"./.{devcontainer,github,vscode,git}/**",
"*.{test,tests,spec}.*",
"*_{test,tests,spec}.*"
]
}