forked from Lusito/mockzilla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.95 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.9.6",
"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": "npm run 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",
"rimraf": "./node_modules/rimraf/bin.js",
"prepare": "npm run build"
},
"devDependencies": {
"@lusito/eslint-config": "^1.3.1",
"@lusito/prettier-config": "^1.2.0",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.9",
"chalk": "^4.1.0",
"expect": "^26.6.2",
"jest-diff": "^26.6.2",
"jest-message-util": "^26.6.2",
"jest-validate": "^26.6.2",
"rimraf": "^3.0.2",
"sort-package-json": "^1.48.0",
"typescript": "^4.1.2",
"vuepress": "^1.7.1",
"vuepress-plugin-fulltext-search": "^2.1.0"
},
"peerDependencies": {
"chalk": "^4.0.0",
"expect": "^26.0.0",
"jest-diff": "^26.0.0",
"jest-message-util": "^26.0.0",
"jest-validate": "^26.0.0"
}
}