-
Notifications
You must be signed in to change notification settings - Fork 3
/
deno.json
42 lines (42 loc) · 949 Bytes
/
deno.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
{
"name": "@ndaidong/bellajs",
"version": "12.0.1",
"description": "A useful helper for any javascript program",
"homepage": "https://github.com/ndaidong/bellajs",
"repository": {
"type": "git",
"url": "git+https://github.com/ndaidong/bellajs.git"
},
"author": "@ndaidong",
"license": "MIT",
"tasks": {
"build": "deno run -A ./scripts/build_npm.ts"
},
"imports": {
"assert": "https://deno.land/[email protected]/assert/mod.ts",
"@deno/dnt": "jsr:@deno/dnt@^0.41.2"
},
"exports": "./mod.ts",
"lint": {
"include": ["mod.ts", "utils/*.ts", "scripts/*.ts", "tests/*.ts"],
"exclude": ["npm"],
"rules": {
"tags": ["recommended"],
"include": [],
"exclude": ["no-explicit-any"]
}
},
"test": {
"include": ["tests"],
"exclude": []
},
"publish": {
"include": [
"LICENSE",
"README.md",
"mod.ts",
"utils/*.ts",
"tests/*.ts"
]
}
}