-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
81 lines (81 loc) · 2.58 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
{
"name": "@marko/jest",
"description": "A preprocessor and preset to use Marko with Jest",
"version": "6.0.0",
"author": "Dylan Piercey <[email protected]>",
"bugs": "https://github.com/marko-js/jest/issues",
"dependencies": {
"concat-with-sourcemaps": "^1.1.0",
"enhanced-resolve-jest": "^1.1.0",
"merge-source-map": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@jest/transform": "^29.1.0",
"@types/enhanced-resolve": "^3.0.7",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.23",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"babel-jest": "^29.1.0",
"esbuild": "^0.15.9",
"esbuild-register": "^3.3.3",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-prettier": "^4.2.1",
"fixpack": "^4.0.0",
"husky": "^8.0.1",
"jest": "^29.1.1",
"jest-config": "^29.1.1",
"jest-environment-jsdom": "^29.1.1",
"jest-transform-css": "^5.0.0",
"lint-staged": "^13.0.3",
"marko": "^5.21.9",
"prettier": "^2.7.1",
"standard-version": "^9.5.0",
"tiny-glob": "^0.2.9",
"typescript": "^4.8.4"
},
"files": [
"dist/preset",
"dist/transform",
"preset",
"transform"
],
"homepage": "https://github.com/marko-js/jest",
"keywords": [
"jest",
"marko",
"test"
],
"license": "MIT",
"main": "transform/node.js",
"peerDependencies": {
"jest-config": "23 - 29"
},
"repository": {
"type": "git",
"url": "https://github.com/marko-js/jest"
},
"scripts": {
"build": "tsc && node build.js",
"ci:test": "npm run jest -- --ci --coverage",
"format": "npm run lint:eslint -- --fix && npm run lint:prettier -- --write && (fixpack || true)",
"jest": "node -r esbuild-register $(which jest) --runInBand",
"lint": "tsc && npm run lint:eslint && npm run lint:prettier -- -l && fixpack",
"lint:eslint": "eslint -f visualstudio .",
"lint:prettier": "prettier '**/*{.ts,.js,.json,.md,.yml,rc}'",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"release": "standard-version",
"report": "open ./coverage/lcov-report/index.html",
"test": "npm run jest -- --watch",
"test:inspect": "node -r esbuild-register --inspect=0.0.0.0 $(which jest) --watch --runInBand --testTimeout 99999999"
},
"types": "dist/transform/node.d.ts"
}