-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
74 lines (74 loc) · 2.34 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
{
"name": "@salesforce/wire-service-jest-util",
"version": "4.1.5",
"description": "Utility library emit test data through @wire adapters in Lightning web component tests",
"license": "MIT",
"main": "dist/wire-service-jest-util.common.js",
"module": "dist/wire-service-jest-util.es.js",
"files": [
"dist/*",
"types.d.ts"
],
"types": "dist/dts/index.d.ts",
"scripts": {
"prepare": "yarn build",
"check-license-headers": "node ./scripts/checkLicenseHeaders.js",
"clean": "rimraf dist node_modules",
"lint": "eslint src",
"build": "rollup -c ./rollup.config.mjs",
"test": "jest --coverage",
"release:version": "npm version",
"release:publish": "npm publish --access public --registry=https://registry.npmjs.org",
"release:publish:ci": "node ./scripts/release/publish.js"
},
"keywords": [
"lwc",
"wire-service",
"@wire",
"jest",
"testing"
],
"repository": "https://github.com/salesforce/wire-service-jest-util",
"peerDependencies": {
"@lwc/engine-dom": ">=2.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@lwc/compiler": "^8.5.0",
"@lwc/engine-dom": "^8.5.0",
"@lwc/eslint-plugin-lwc": "^1.7.2",
"@lwc/jest-preset": "^18.1.0",
"@lwc/synthetic-shadow": "^8.5.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.53.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.2.0",
"execa": "^9.3.1",
"is-ci": "^4.1.0",
"isbinaryfile": "^5.0.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rimraf": "^6.0.1",
"rollup": "^4.14.1",
"tslib": "^2.6.2",
"typescript": "^5.4.4"
},
"lwc": {
"modules": [
{
"name": "wire-service-jest-util",
"path": "dist/wire-service-jest-util.es.js"
}
]
},
"volta": {
"node": "20.12.1",
"yarn": "1.22.22"
},
"dependencies": {}
}