-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
133 lines (133 loc) · 3.64 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
125
126
127
128
129
130
131
132
133
{
"name": "@salesforce/lwc-dev-mobile",
"description": "Salesforce CLI plugin for mobile extensions to Local Development",
"version": "2.3.0",
"author": {
"name": "Raj Rao",
"email": "[email protected]",
"url": "https://github.com/trooper2013"
},
"contributors": [
{
"name": "Kevin Hawkins",
"email": "[email protected]",
"url": "https://github.com/khawkins"
},
{
"name": "Meisam Seyed Aliroteh",
"email": "[email protected]",
"url": "https://github.com/maliroteh-sf"
},
{
"name": "Takashi Arai",
"email": "[email protected]",
"url": "https://github.com/sfdctaka"
},
{
"name": "Peter Van Dyk",
"email": "[email protected]",
"url": "https://github.com/pvandyk"
}
],
"bugs": "https://github.com/forcedotcom/lwc-dev-mobile/issues",
"dependencies": {
"@oclif/core": "^3.8.0",
"@oclif/plugin-version": "^2.2.15",
"@salesforce/core": "^5.3.12",
"@salesforce/lwc-dev-mobile-core": "^3.3.1",
"@salesforce/sf-plugins-core": "^4.0.0",
"chalk": "^4.1.2"
},
"devDependencies": {
"@types/cli-progress": "^3.11.6",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.7",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.4.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-unicorn": "^55.0.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-chain": "^1.1.6",
"jest-extended": "^4.0.2",
"jest-junit": "^16.0.0",
"lint-staged": "^15.2.10",
"oclif": "^4.15.20",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=20"
},
"volta": {
"node": "20.18.0",
"yarn": "1.22.22"
},
"main": "lib/index.js",
"files": [
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"!**/__tests__/",
"!**/__mocks__/",
"!**/*.test.*",
"!**/.DS_Store"
],
"homepage": "https://github.com/forcedotcom/lwc-dev-mobile",
"keywords": [
"sfdx-plugin"
],
"license": "MIT",
"oclif": {
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
],
"default": ".",
"commands": "./lib/cli/commands",
"bin": "lwc-dev-mobile",
"topics": {
"hello": {
"description": "Sfdx Lightning local development for mobile platforms."
}
},
"plugins": [],
"devPlugins": [
"@oclif/plugin-version"
]
},
"repository": "https://github.com/forcedotcom/lwc-dev-mobile",
"scripts": {
"clean": "yarn rimraf lib dist reports coverage errorShots oclif.manifest.json",
"build": "yarn clean && tsc",
"lint": "yarn eslint src --ext js,ts",
"prepack": "rm -rf lib && tsc -b && oclif manifest && oclif readme",
"postpack": "rm -f oclif.manifest.json",
"posttest": "yarn lint",
"test": "yarn jest --coverage",
"test:watch": "yarn test --watch",
"test:debug": "node --inspect node_modules/.bin/jest src --runInBand",
"version": "oclif readme && git add README.md",
"prepare": "husky install",
"prettier:write": "prettier --write \"src/**/*.{ts, tsx, js, jsx}\"",
"prettier:verify": "prettier --list-different \"src/**/*.{ts, tsx, js, jsx}\""
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged",
"pre-push": "yarn lint"
}
}
}