-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeno.json
41 lines (41 loc) · 1007 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
{
"lint": {
"include": ["./**/*.ts"],
"exclude": ["./**/*.js"],
"rules": {
"exclude": ["no-explicit-any"]
}
},
"fmt": {
"include": ["./**/*.ts", "./**/*.md", "./**/*.json"],
"exclude": ["./**/*.js"],
"singleQuote": true,
"semiColons": false,
"useTabs": false,
"indentWidth": 2,
"lineWidth": 120
},
"imports": {
"@std/expect": "jsr:@std/expect@^1.0.13",
"@std/io": "jsr:@std/io@^0.225.2",
"@std/testing": "jsr:@std/testing@^1.0.9",
"solc": "./mod.ts",
"solc/download": "./download.ts",
"solc/types": "./types.ts"
},
"test": {
"exclude": ["./**/*.js", "examples"]
},
"tasks": {
"test": "deno test --no-check --allow-net --allow-read --allow-write --coverage=coverage",
"cov": "deno coverage coverage --lcov > coverage.lcov"
},
"name": "@deno-web3/solc",
"version": "3.0.0",
"license": "MIT",
"exports": {
".": "./mod.ts",
"./download": "./download.ts",
"./types": "./types.ts"
}
}