forked from forcedotcom/lwc-dev-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.3 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
{
"name": "@salesforce/lwc-dev-mobile",
"description": "Salesforce CLI plugin for mobile extensions to Local Development",
"version": "0.4.1",
"author": "Raj Rao @trooper2013",
"bugs": "https://github.com/forcedotcom/lwc-dev-mobile/issues",
"dependencies": {
"@oclif/command": "^1.5.16",
"@oclif/config": "^1.13.1",
"@oclif/errors": "^1",
"@salesforce/command": "^2.0.0",
"@salesforce/core": "^2.0.1",
"@salesforce/telemetry": "^1.2.2",
"@salesforce/ts-types": "^1.1.4",
"@types/shelljs": "^0.8.8",
"ajv": "^6.12.4",
"chalk": "^4.0.0",
"cli-ux": "^5.4.5",
"colors": "^1.4.0",
"listr": "^0.14.3",
"shelljs": "^0.8.3",
"tslib": "^1"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.0",
"@oclif/test": "^1.2.4",
"@oclif/tslint": "^3.1.1",
"@salesforce-ux/design-system": "^2.10.0",
"@types/chai": "^4",
"@types/jest": "^24.0.15",
"@types/mocha": "^5",
"@types/node": "^10",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"chai": "^4",
"env-var": "^5.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-json": "^2.1.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"globby": "^8",
"husky": "^3.0.0",
"jest": "^24.8.0",
"jest-chain": "^1.1.5",
"jest-circus": "^24.9.0",
"jest-environment-node": "^24.8.0",
"jest-extended": "^0.11.5",
"jest-junit": "^6.4.0",
"lint-staged": "^9.2.0",
"mocha": "^5",
"nyc": "^14",
"prettier": "^2.0.4",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3"
},
"engines": {
"node": ">=8.0.0"
},
"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": {
"commands": "./lib/cli/commands",
"bin": "lwc-dev-mobile",
"hooks": {
"installserverplugin": "./lib/cli/hooks/InstallLwcServerPlugin"
},
"topics": {
"hello": {
"description": "Sfdx Lightning local development for mobile platforms."
}
},
"plugins": [],
"devPlugins": [
"@oclif/plugin-help",
"@oclif/plugin-update"
]
},
"repository": "https://github.com/forcedotcom/lwc-dev-mobile",
"scripts": {
"clean": "yarn rimraf dist reports coverage errorShots oclif.manifest.json",
"build": "yarn clean && tsc",
"lint": "yarn eslint src --ext js,ts",
"postpack": "rm -f oclif.manifest.json",
"posttest": "tslint -p . -t stylish",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "yarn jest --coverage",
"test:watch": "yarn test --watch",
"test:debug": "node --inspect node_modules/.bin/jest src --runInBand",
"version": "oclif-dev readme && git add README.md"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged",
"pre-push": "yarn lint"
}
}
}