-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.56 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
{
"name": "@sfccdevops/sfcc-cartridge-diff",
"version": "1.2.0",
"description": "SFCC Cartridge Diff Tool",
"homepage": "https://github.com/sfccdevops/sfcc-cartridge-diff#readme",
"license": "MIT",
"main": "./bin/cli.js",
"bin": {
"sfcc-diff": "./bin/cli.js"
},
"engines": {
"node": ">=14.17.3",
"npm": ">= 6.14.13"
},
"keywords": [
"cartridge",
"cli",
"commerce-cloud",
"demandware",
"diff",
"salesforce",
"sfcc"
],
"contributors": [
{
"name": "Peter Schmalfeldt",
"email": "[email protected]",
"url": "https://peterschmalfeldt.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/sfccdevops/sfcc-cartridge-diff.git"
},
"bugs": {
"url": "https://github.com/sfccdevops/sfcc-cartridge-diff/issues"
},
"scripts": {
"test": "npm run -s test:lint && npm run -s test:unit",
"test:unit": "jest",
"test:lint": "eslint --ext .js ./ --fix && echo '\n【ツ】CODE PERFECTION !!!\n'"
},
"lint-staged": {
"*.js": [
"eslint . --fix",
"git add"
]
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"minimist": "^1.2.6",
"prettier": "^2.7.1"
},
"dependencies": {
"chalk": "^4.1.2",
"dir-compare": "^4.0.0",
"ora": "^5.4.1",
"prompts": "^2.4.2",
"yargs": "^17.5.1"
}
}