-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·61 lines (61 loc) · 1.88 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
{
"name": "@sfccdevops/sfcc-devtools",
"version": "1.1.1",
"description": "Support Browser Interaction with VS Code, Eclipse, and SFCC Business Manager via DevTools Web Inspector.",
"author": "SFCC DevOps",
"license": "MIT",
"private": false,
"engines": {
"node": ">= 14.17.3",
"npm": ">= 6.14.13"
},
"keywords": [
"browser",
"extension",
"chrome",
"firefox",
"opera",
"salesforce",
"commerce-cloud",
"demandware",
"development",
"sandbox",
"devtools",
"web-inspector"
],
"contributors": [
{
"name": "Peter Schmalfeldt",
"email": "[email protected]",
"url": "https://peterschmalfeldt.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/sfccdevops/sfcc-devtools.git"
},
"bugs": {
"url": "https://github.com/sfccdevops/sfcc-devtools/issues",
"email": "[email protected]"
},
"scripts": {
"test": "npm run -s lint",
"lint": "eslint --ext .js -f ./node_modules/eslint-friendly-formatter src && echo '\n【ツ】CODE FORMATTING PERFECTION !!!\n'",
"pack": "npm run -s test && npm run -s pack:webkit && npm run -s pack:firefox && echo '\n★ ALL DONE\n'",
"pack:webkit": "crx pack src -o dist/sfcc-devtools-webkit.crx -p key.pem && cd src && jszip -c ../.jszip-webkit.json &> /dev/null && echo '✓ WebKit Extension Created'",
"pack:firefox": "cd src && jszip -c ../.jszip-firefox.json &> /dev/null && echo '✓ Firefox Addon Created'"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"crx": "^5.0.1",
"eslint": "^8.20.0",
"eslint-config-standard": "^17.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"jszip-cli": "^1.4.24"
}
}