๐Ÿ“ฆ antongolub / abstractest

๐Ÿ“„ package.json ยท 58 lines
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{
  "name": "@abstractest/native",
  "version": "0.0.0",
  "description": "Native node:test runner for abstractest",
  "publishConfig": {
    "access": "public"
  },
  "type": "module",
  "main": "target/cjs/index.cjs",
  "exports": {
    ".": {
      "types": "./target/dts/index.d.ts",
      "require": "./target/cjs/index.cjs",
      "import": "./target/esm/index.mjs",
      "default": "./target/esm/index.mjs"
    }
  },
  "module": "target/esm/index.mjs",
  "types": "target/dts/index.d.ts",
  "dependencies": {
    "@abstractest/core": "workspace:*",
    "@abstractest/expect": "workspace:*",
    "@abstractest/mock": "workspace:*",
    "c8": "^8.0.0",
    "fast-glob": "^3.3.0",
    "ts-node": "^10.9.1"
  },
  "devDependencies": {
    "@abstractest/infra": "workspace:*",
    "@types/node": "^20.4.1"
  },
  "files": [
    "target/cjs",
    "target/esm",
    "target/dts"
  ],
  "scripts": {
    "build": "concurrently --kill-others-on-fail 'npm:build:*'",
    "build:esm": "node ../infra/scripts/build.mjs",
    "build:cjs": "node ../infra/scripts/build.mjs --cjs",
    "build:dts": "tsc --emitDeclarationOnly --skipLibCheck --outDir target/dts",
    "build:docs": "typedoc --options src/main/typedoc",
    "test": "concurrently --kill-others-on-fail 'npm:test:*'",
    "test:lint": "eslint -c src/test/lint/.eslintrc.json src",
    "test:unit": "c8 -r lcov -r text -o target/coverage --include src/main/ts node --loader ts-node/esm --experimental-specifier-resolution=node ../infra/scripts/test.mjs"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/antongolub/abstractest.git"
  },
  "author": "Anton Golub <antongolub@antongolub.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/antongolub/abstractest/issues"
  },
  "homepage": "https://github.com/antongolub/abstractest#readme"
}