-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.25 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
{
"name": "@wezom/toolkit-jest",
"version": "3.4.1",
"description": "Useful tools for working with Jest",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "del-cli dist && rollup -c rollup.config.js && prettier dist/**/*.{d.ts,js} --check --write",
"autodoc": "npm run autodoc:typedoc && npm run autodoc:inject",
"test": "npm run prettier && npm run eslint && npm run jest",
"test:autofix": "npm run prettier:autofix && npm run eslint:autofix && npm run jest:coverage",
"----------------------------------------------- AUTODOC": "SECTION",
"autodoc:typedoc": "typedoc src --json .cache/typedoc.json && node ./utils/autodoc-typedoc-normalize.js",
"autodoc:inject": "node ./utils/autodoc-ts-tool.js && prettier ./README.md --write",
"----------------------------------------------- TEST": "SECTION",
"prettier": "prettier \"./src/**/*.ts\" --check",
"prettier:autofix": "npm run prettier -- --write",
"eslint": "eslint ./src/*.ts --cache --cache-location ./.cache/eslint/.eslintcache",
"eslint:autofix": "npm run eslint -- --fix",
"jest": "jest --passWithNoTests",
"jest:coverage": "npm run jest -- --coverage --collectCoverageFrom=\"./src/**/*.ts\" && istanbul-badges-readme"
},
"license": "BSD-3-Clause",
"author": {
"name": "Oleg Dutchenko",
"email": "[email protected]"
},
"keywords": [
"@wezom",
"toolkit",
"toolbox",
"jest",
"ts-jest"
],
"repository": {
"type": "git",
"url": "git+https://github.com/WezomCompany/toolkit-jest.git"
},
"bugs": {
"url": "https://github.com/WezomCompany/toolkit-jest/issues"
},
"homepage": "https://github.com/WezomCompany/toolkit-jest#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@wezom/eslint-config": "^2.1.0-beta.0",
"@wezom/eslint-config-ts": "^2.1.1-beta.0",
"del-cli": "^3.0.1",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jest": "^24.1.3",
"from-cwd": "^1.0.1",
"istanbul-badges-readme": "^1.2.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rollup": "^2.39.0",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.5.1",
"typedoc": "^0.20.30",
"typescript": "^4.1.3"
}
}