-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.76 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": "mockzilla",
"version": "0.14.0",
"description": "A mocking toolkit leveraging the power of TypeScript to enhance your jest experience.",
"keywords": [
"TypeScript",
"mock",
"deep-mock",
"jest"
],
"license": "ZLib",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsc",
"docs:build": "vuepress build docs",
"docs:dev": "vuepress dev docs",
"lint": "npm run lint:es && npm run lint:package && npm run lint:style",
"lint:es": "eslint \"src/**/*.ts\" --ext \".ts\" --ignore-path .prettierignore",
"lint:es:fix": "npm run lint:es -- --fix",
"lint:fix": "npm run lint:es:fix && npm run lint:package:fix && npm run lint:style:fix",
"lint:package": "sort-package-json --check",
"lint:package:fix": "sort-package-json",
"lint:style": "npm run lint:style:base -- --check",
"lint:style:base": "prettier \"src/**/*.{ts,js,json}\" \"./*.{ts,js,json}\"",
"lint:style:fix": "npm run lint:style:base -- --write"
},
"devDependencies": {
"@jest/expect-utils": "^28.1.3",
"@lusito/eslint-config": "^2.0.3",
"@lusito/prettier-config": "^2.0.0",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.1",
"chalk": "^4.1.2",
"expect": "^28.1.3",
"jest-diff": "^28.1.3",
"jest-message-util": "^28.1.3",
"jest-validate": "^28.1.3",
"rimraf": "^3.0.2",
"sort-package-json": "^1.57.0",
"typescript": "^4.7.4",
"vuepress": "^1.9.7",
"vuepress-plugin-fulltext-search": "^2.2.1"
},
"peerDependencies": {
"@jest/expect-utils": "^28.0.0",
"chalk": "^4.0.0",
"expect": "^28.0.0",
"jest-diff": "^28.0.0",
"jest-message-util": "^28.0.0",
"jest-validate": "^28.0.0"
}
}