-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.33 KB
/
package.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@lukemorales/jest-type-matchers",
"version": "0.2.2",
"author": "Luke Morales <[email protected]>",
"description": "Custom jest matchers to test the state of your types",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lukemorales/jest-type-matchers.git"
},
"bugs": {
"url": "https://github.com/lukemorales/jest-type-matchers/issues"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup --dts --minify",
"changeset": "changeset",
"dev": "pnpm run test --watch",
"lint": "run-p lint:*",
"lint:eslint": "eslint src --ext .ts",
"lint:eslint:fix": "pnpm run lint:eslint --fix",
"lint:prettier": "prettier --check \"src/**/*.ts\"",
"lint:prettier:fix": "pnpm run lint:prettier --write",
"lint:tsc": "tsc --project tsconfig.json --noEmit",
"prerelease": "run-p build test:ci",
"release": "changeset publish",
"test": "jest --passWithNoTests --colors",
"test:ci": "pnpm run test --ci --bail"
},
"lint-staged": {
"*.ts": [
"eslint src --ext .ts"
]
},
"peerDependencies": {
"typescript": ">=3.3.1"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.7",
"@changesets/cli": "^2.25.0",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/jest": "^29.1.2",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.25.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-jest": "^27.1.1",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^29.1.2",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"tsup": "^6.2.3",
"typescript": "^4.8.4"
},
"keywords": [
"jest",
"matchers",
"jest-matchers",
"custom-matcher",
"custom-jest-matcher",
"extend",
"test",
"testing",
"assertions",
"typescript",
"types",
"type-assertions",
"type-testing"
]
}