-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
24 lines (24 loc) · 666 Bytes
/
Copy pathdeno.json
File metadata and controls
24 lines (24 loc) · 666 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "@nick/terminfo",
"version": "0.1.0",
"license": "MIT",
"author": {
"name": "Nicholas Berlette",
"email": "nick@berlette.com",
"url": "https://github.com/nberlette"
},
"exports": {
".": "./src/terminfo.ts",
"./types": "./src/types.ts",
"./terminfo": "./src/native/terminfo.node",
"./terminfo.node": "./src/native/terminfo.node"
},
"tasks": {
"build": "./scripts/build.sh",
"fmt": "deno fmt",
"fmt:check": "deno fmt --check",
"lint": "deno lint",
"lint:fix": "deno lint --fix",
"test": "deno test -Aq --parallel --no-check=remote --coverage=.coverage --doc --coverage-raw-data-only"
}
}