-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
61 lines (61 loc) · 2.02 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@milly/streamtest",
"version": "0.0.0",
"exports": {
".": "./mod.ts",
"./errors": "./errors/mod.ts",
"./types": "./types.ts",
"./examples/upper-case": "./examples/upper_case.ts"
},
"nodeModulesDir": false,
"tasks": {
"check": "deno lint && deno fmt --check && deno check --no-lock *.ts errors/**/*.ts examples/**/*.ts scripts/**/*.ts tests/**/*.ts",
"check:publish": "deno publish --dry-run",
"test": "deno test --allow-net --allow-read",
"test:all": "deno task check && deno task test:doc && npm run test && npm run test:browser",
"test:doc": "deno task test --doc",
"test:coverage": "deno task coverage:clean && deno task test:doc --parallel --shuffle --coverage=.coverage",
"test:log": "TESTLOG=1 deno task test --allow-env",
"coverage": "deno coverage .coverage",
"coverage:clean": "rm -rf .coverage",
"pre-commit": "deno fmt && deno task -q check && deno task -q test:doc",
"update": "deno run --unstable-kv --allow-env --allow-read --allow-write --allow-run=git,deno --allow-net=jsr.io,registry.npmjs.org jsr:@molt/cli@^0.19.0 deno.json",
"update:commit": "deno task update --commit --prefix 'chore:'"
},
"imports": {
"#bdd": "./tests/util/bdd.deno.ts",
"@cross/env": "jsr:@cross/env@^1.0.2",
"@cross/runtime": "jsr:@cross/runtime@^1.0.0",
"@milly/streamtest": "./mod.ts",
"@milly/streamtest/examples/upper-case": "./examples/upper_case.ts",
"@sinonjs/fake-timers": "npm:@sinonjs/fake-timers@^13.0.1",
"@std/assert": "jsr:@std/assert@^1.0.1",
"@std/async": "jsr:@std/async@^1.0.1",
"@std/log": "jsr:@std/log@^0.224.5",
"@std/testing": "jsr:@std/testing@^1.0.1"
},
"test": {
"include": [
"**/*.ts"
],
"exclude": [
"scripts/",
"tests/browser/"
]
},
"publish": {
"exclude": [
"**/*.test.ts",
"package-lock.json",
"package.json",
"scripts/",
"tests/",
"tsconfig.json"
]
},
"exclude": [
".*",
"node_modules/",
"test-results/"
]
}