-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.31 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
{
"name": "lwc-codemod",
"version": "2.0.2",
"description": "LWC codemod scripts",
"license": "BSD-3-Clause",
"type": "module",
"author": "Nolan Lawson <nlawson@salesforce.com>",
"bin": {
"lwc-codemod": "transforms/cli.js"
},
"dependencies": {
"@lwc/template-compiler": "^8.11.0",
"jscodeshift": "^17.0.0",
"parse5": "^7.1.2",
"postcss": "^8.4.33",
"postcss-selector-parser": "^7.0.0"
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest ./tests/*.spec.js",
"test:debug": "NODE_OPTIONS='--experimental-vm-modules --inspect-brk' jest --runInBand ./tests/*.spec.js",
"lint": "standard"
},
"devDependencies": {
"jest": "^29.7.0",
"standard": "^17.1.0"
},
"volta": {
"node": "20.11.0",
"yarn": "1.22.21"
},
"standard": {
"globals": [
"beforeAll",
"beforeEach",
"test",
"afterEach",
"afterAll",
"describe",
"expect"
],
"ignore": [
"**/fixtures/"
]
},
"files": [
"transforms"
],
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/salesforce/lwc-codemod.git"
},
"bugs": {
"url": "https://github.com/salesforce/lwc-codemod/issues"
},
"homepage": "https://github.com/salesforce/lwc-codemod#readme"
}