-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.44 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.44 KB
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
{
"name": "@salesforce/sfdx-lwc-jest",
"version": "7.8.0",
"description": "Run Jest against LWC components in a Salesforce DX workspace environment",
"main": "src/index.js",
"license": "MIT",
"files": [
"bin/",
"src/",
"config.js"
],
"repository": {
"type": "git",
"url": "https://github.com/salesforce/sfdx-lwc-jest.git"
},
"bugs": {
"url": "https://github.com/salesforce/sfdx-lwc-jest/issues"
},
"homepage": "https://github.com/salesforce/sfdx-lwc-jest#readme",
"bin": {
"lwc-jest": "./bin/sfdx-lwc-jest",
"sfdx-lwc-jest": "./bin/sfdx-lwc-jest"
},
"scripts": {
"prepare": "husky install",
"lint": "eslint src/ tests/",
"format": "prettier --write '**/*.{js,json,md,html,css}'",
"format:check": "prettier --check '**/*.{js,json,md,html,css}'",
"release": "yarn release:publish",
"release:version": "npm version",
"release:publish": "npm publish --access public --registry=https://registry.npmjs.org",
"test": "jest"
},
"dependencies": {
"@lwc/compiler": "8.28.2",
"@lwc/engine-dom": "8.28.2",
"@lwc/engine-server": "8.28.2",
"@lwc/jest-preset": "19.4.0",
"@lwc/jest-resolver": "19.4.0",
"@lwc/jest-serializer": "19.4.0",
"@lwc/jest-transformer": "19.4.0",
"@lwc/module-resolver": "8.28.2",
"@lwc/state": "0.28.0",
"@lwc/state-test-utils": "0.28.0",
"@lwc/synthetic-shadow": "8.28.2",
"@lwc/wire-service": "8.28.2",
"@salesforce/wire-service-jest-util": "4.1.6",
"fast-glob": "^3.3.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"yargs": "~17.7.2"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/eslint-parser": "^7.28.4",
"@babel/plugin-proposal-decorators": "^7.28.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.36.0",
"eslint": "^9.36.0",
"eslint-plugin-header": "^3.1.1",
"globals": "^16.4.0",
"husky": "^9.1.7",
"isbinaryfile": "^5.0.6",
"lint-staged": "^16.2.3",
"prettier": "^3.6.2"
},
"volta": {
"node": "24.11.0",
"yarn": "1.22.22"
},
"lint-staged": {
"*.js": "eslint",
"*.{js,json,md,html,css}": "prettier --write"
},
"publishConfig": {
"tag": "prerelease"
}
}