-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathdeno.json
38 lines (38 loc) · 1.64 KB
/
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
{
"name": "@gadicc/yahoo-finance2",
"version": "0.0.1",
"tasks": {
"cli": "deno run -A bin/yahoo-finance.ts",
"install-cli": "deno install -A --global -n yahoo-finance npm:yahoo-finance/bin/yahoo-finance.ts",
"schema_": "TODO below... separate watch mode, vscode scripts, mtime check, etc",
"schema": "deno run -A scripts/schema-gen.ts",
"test": "deno test -A --parallel",
"build:npm": "deno run -A scripts/build_npm.ts",
"devTODO": "deno run --watch main.ts"
},
"exports": "./src/index.ts",
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.41.3",
"@gadicc/fetch-mock-cache": "jsr:@gadicc/fetch-mock-cache@^2.1.3",
"@jest/types": "npm:@jest/types@^29.6.3",
"@std/async": "jsr:@std/async@^1.0.11",
"@std/cli": "jsr:@std/cli@^1.0.14",
"@std/expect": "jsr:@std/expect@^1.0.13",
"@std/fmt": "jsr:@std/fmt@^1.0.5",
"@std/fs": "jsr:@std/fs@^1.0.13",
"@std/testing": "jsr:@std/testing@^1.0.9",
"@types/json-schema": "npm:@types/json-schema@^7.0.15",
"conventional-changelog-conventionalcommits": "npm:conventional-changelog-conventionalcommits@^8.0.0",
"fetch-mock-cache": "npm:fetch-mock-cache@^2.1.3",
"jest-get-type": "npm:jest-get-type@^29.6.3",
"json-schema": "npm:json-schema@^0.4.0",
"oas-schema-walker": "npm:oas-schema-walker@^1.1.5",
"semantic-release": "npm:semantic-release@^24.2.3",
"tough-cookie": "npm:tough-cookie@^5.1.1",
"tough-cookie-file-store": "npm:tough-cookie-file-store@^2.0.3",
"ts-json-schema-generator": "npm:ts-json-schema-generator@1.5.1"
},
"fmt": {
"include": ["src/**/*.ts", "bin/**/*.ts", "test/**/*.ts", "scripts/**/*.ts"]
}
}