This repository has been archived by the owner on Oct 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
124 lines (124 loc) · 3.66 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "karma-jest",
"version": "1.0.0-beta.18",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "/~https://github.com/4Catalyzer/karma-jest.git"
},
"author": "4Catalyzer",
"license": "MIT",
"scripts": {
"prebuild": "patch-package",
"build": "rollup -c rollup.config.js && cp -r src/assets lib && cp -r src/shims lib/",
"format": "4c format src './*'",
"lint": "4c lint src './*'",
"prepublishOnly": "yarn run build",
"release": "4c release",
"test": "yarn lint && yarn typecheck",
"typecheck": "tsc --noEmit",
"postinstall": "patch-package"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public",
"directory": "lib"
},
"prettier": "@4c/prettier-config",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": "yarn 4c lint --fix"
},
"peerDependencies": {
"karma": "*"
},
"devDependencies": {
"@4c/babel-preset": "^7.3.6",
"@4c/cli": "^2.1.11",
"@4c/prettier-config": "^1.1.0",
"@4c/tsconfig": "^0.3.1",
"@babel/core": "^7.11.1",
"@babel/preset-typescript": "^7.10.4",
"@babel/register": "^7.10.5",
"@rollup/plugin-replace": "^2.3.3",
"@types/karma": "^5.0.0",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"browser-jest-message-util": "npm:jest-message-util@26.3.0",
"browser-jest-snapshot": "npm:jest-snapshot@26.4.0",
"browser-jest-util": "npm:jest-util@26.3.0",
"eslint-config-4catalyzer": "^1.1.2",
"eslint-config-4catalyzer-jest": "^2.0.7",
"eslint-config-4catalyzer-typescript": "^2.0.2",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"karma": "^5.1.1",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-rollup-preprocessor": "^7.0.5",
"lint-staged": "^10.2.11",
"patch-package": "^6.2.2",
"prettier": "^2.0.5",
"rollup": "^2.26.3",
"rollup-plugin-alias": "^2.2.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-cjs-es": "^1.0.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-visualizer": "^4.1.0",
"typescript": "^4.0.2"
},
"dependencies": {
"@4c/cli-core": "^2.1.5",
"@babel/code-frame": "^7.8.3",
"@jest/console": "^26.0.0",
"@jest/fake-timers": "^26.0.0",
"@jest/reporters": "^26.0.0",
"@jest/test-result": "^26.0.0",
"@jest/types": "^26.0.0",
"@rollup/plugin-alias": "^3.0.1",
"@types/babel__code-frame": "^7.0.1",
"@types/lodash": "^4.14.159",
"@types/marked": "^1.1.0",
"@types/mocha": "^8.0.0",
"@types/webpack": "^4.41.21",
"ansi-colors": "^4.1.1",
"clone-deep": "^4.0.1",
"error-stack-parser": "^2.0.6",
"expect": "^26.0.0",
"get-sourcemaps": "^0.1.0",
"glob": "^7.1.6",
"imports-loader": "^1.1.0",
"jest-circus": "^26.0.0",
"jest-message-util": "^26.0.0",
"jest-mock": "^26.0.0",
"jest-snapshot": "^26.0.0",
"jest-util": "^26.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^5.0.0-alpha.3.0",
"lodash": "^4.17.19",
"marked": "^1.0.0",
"ora": "^5.1.0",
"pretty-format": "^26.0.1",
"source-map": "^0.7.3",
"ua-parser-js": "^0.7.21",
"webpack": "^4.44.1",
"webpack-atoms": "^13.1.0",
"webpack-dev-middleware": "^3.7.2",
"webpack-log": "^3.0.1",
"webpack-merge": "^5.1.1"
}
}