-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
57 lines (57 loc) · 1.45 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
{
"name": "jest-matcher-specific-error",
"version": "1.0.0",
"description": "Make sure your function really throws what you expect",
"main": "dist/src/index.js",
"types": "types/index.d.ts",
"repository": "git@github.com:DanielHreben/jest-matcher-specific-error.git",
"author": "Daniel Hreben <daniel.hreben@gmail.com>",
"license": "MIT",
"private": false,
"files": [
"types",
"dist/src"
],
"tags": [
"jest",
"expect",
"matcher",
"error",
"plugin",
"throws",
"reject"
],
"scripts": {
"prepare": "yarn build",
"build": "rm -rf ./dist; tsc",
"lint:check": "eslint . --ext .ts",
"lint:lockfile": "lockfile-lint --path yarn.lock",
"lint": "yarn lint:check --fix",
"test": "jest"
},
"lockfile-lint": {
"allowed-hosts": [
"npm"
]
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@types/strip-color": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-simple-import-sort": "^5.0.3",
"jest": "^26.4.2",
"lockfile-lint": "^4.12.1",
"prettier": "^2.1.2",
"strip-color": "^0.1.0",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
}
}