-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
79 lines (75 loc) · 2.32 KB
/
deno.json
File metadata and controls
79 lines (75 loc) · 2.32 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@contiguity/cli",
"description": "Command-line interface to interact with Contiguity's API",
"version": "2.0.0",
"repository": "https://github.com/use-contiguity/cli",
"documentation": "https://docs.contiguity.co/#/cli/",
"license": "MIT",
"tasks": {
"build": "deno task build-man && deno task build-npm",
"build-npm": "deno run --allow-env --allow-read --allow-write --allow-run --allow-net scripts/build.ts",
"cli": "deno run --allow-read --allow-write --allow-net --allow-env src/cli.ts",
"test": "deno test --allow-read --allow-write --allow-net --allow-env",
"build-man": "pandoc man/contiguity.1.md -s -f markdown-smart -t man -o man/contiguity.1",
"preview-man": "deno task build-man && man -l man/contiguity.1",
"update-lock": "rm deno.lock 2> /dev/null; deno cache --reload --lock=deno.lock --lock-write src/**/*.ts scripts/**/*.ts"
},
"imports": {
"@contiguity/javascript": "npm:@contiguity/javascript@2.0.2",
"dnt": "https://deno.land/x/dnt@0.37.0/mod.ts",
"libphonenumber-js": "npm:libphonenumber-js@1.10",
"yargs": "https://deno.land/x/yargs@v17.7.2-deno/deno.ts",
"yargsTypes": "https://esm.sh/v125/@types/yargs@17.0.24/index.d.ts",
"cliffyPrompts": "https://deno.land/x/cliffy@v0.25.7/prompt/mod.ts",
"std/": "https://deno.land/std@0.211.0/"
},
"exports": {
".": "./src/cli.ts"
},
"fmt": {
"semiColons": false,
"singleQuote": true,
"exclude": ["npm/**/*"]
},
"lint": {
"exclude": ["npm/**/*"]
},
"test": {
"exclude": ["npm/**/*"]
},
"build": {
"outDir": "./npm",
"entryPoints": [
"./src/mod.ts",
{
"kind": "bin",
"name": "contiguity",
"path": "./src/cli.ts"
},
{
"kind": "bin",
"name": "@contiguity/cli",
"path": "./src/cli.ts"
}
],
"man": ["contiguity.1"],
"copiedFiles": {
"README.md": "README.md",
"LICENSE": "LICENSE",
"man/contiguity.1": "contiguity.1"
},
"moduleMappings": {
"https://deno.land/x/yargs@v17.7.2-deno/deno.ts": {
"name": "yargs",
"version": "^17.7.2"
},
"https://esm.sh/v125/@types/yargs@17.0.24/index.d.ts": {
"name": "yargs",
"version": "^17.7.2"
}
},
"devDependencies": {
"@types/yargs": "^17.0.24"
}
}
}