UNPKG

1.02 kBJSONView Raw
1{
2 "name": "@fromdeno/test",
3 "version": "0.3.0",
4 "description": "Minimal test runner, compatible with Deno.test()",
5 "exports": "./src/api.js",
6 "typings": "./src/api.d.ts",
7 "bin": {
8 "fdt": "./src/cli.mjs"
9 },
10 "files": [
11 "src/"
12 ],
13 "scripts": {
14 "fmt": "deno fmt --ignore=node_modules/",
15 "lint": "deno lint --ignore=node_modules/",
16 "clean": "git clean -fXde !node_modules/"
17 },
18 "repository": {
19 "type": "git",
20 "url": "git+https://github.com/fromdeno/test.git"
21 },
22 "homepage": "https://fromdeno.org",
23 "keywords": [
24 "deno",
25 "test",
26 "testing",
27 "tdd",
28 "runner",
29 "harness"
30 ],
31 "author": "Wojciech Pawlik <woj.pawlik@gmail.com>",
32 "license": "MIT",
33 "bugs": {
34 "url": "https://github.com/fromdeno/test/issues"
35 },
36 "engines": {
37 "node": ">=14.13.1"
38 },
39 "peerDependenciesMeta": {
40 "@deno/shim-deno": {
41 "optional": true
42 }
43 },
44 "peerDependencies": {
45 "@deno/shim-deno": "<2"
46 },
47 "dependencies": {
48 "mri": "^1.1.6"
49 }
50}