-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
129 lines (129 loc) · 3.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
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
{
"name": "@salesforce/lwc-dev-mobile",
"description": "Salesforce CLI plugin for mobile extensions to Local Development",
"version": "2.3.0",
"author": {
"name": "Raj Rao",
"email": "rao.r@salesforce.com",
"url": "https://github.com/trooper2013"
},
"contributors": [
{
"name": "Kevin Hawkins",
"email": "khawkins@salesforce.com",
"url": "https://github.com/khawkins"
},
{
"name": "Meisam Seyed Aliroteh",
"email": "maliroteh@salesforce.com",
"url": "https://github.com/maliroteh-sf"
},
{
"name": "Takashi Arai",
"email": "t.arai@salesforce.com",
"url": "https://github.com/sfdctaka"
},
{
"name": "Peter Van Dyk",
"email": "pvandyk@salesforce.com",
"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.10",
"@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.12",
"@types/node": "^22.2.0",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^50.0.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-unicorn": "^55.0.0",
"husky": "^9.1.4",
"jest": "^29.7.0",
"jest-chain": "^1.1.6",
"jest-extended": "^4.0.2",
"jest-junit": "^16.0.0",
"lint-staged": "^15.2.7",
"oclif": "^4.14.19",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=18"
},
"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"
}
}
}