-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.73 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
{
"name": "babel-plugin-sfcc-modules",
"version": "0.0.0-development",
"description": "Babel plugin to handle non-standard module paths used by Salesforce Commerce Cloud (SFCC)",
"repository": {
"type": "git",
"url": "https://github.com/jenssimon/babel-plugin-sfcc-modules"
},
"keywords": [
"sfcc",
"demandware",
"salesforce",
"commercecloud",
"sfra",
"cartridge",
"babel",
"babel-plugin",
"require",
"import",
"module",
"supermodule"
],
"main": "./lib/index.js",
"author": "Jens Simon <https://github.com/jenssimon>",
"license": "MIT",
"scripts": {
"lint": "eslint ./",
"test": "jest --coverage",
"commit": "cz",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"semantic-release": "semantic-release"
},
"dependencies": {
"@babel/types": "^7.23.0",
"imports-visitor": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.15",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@jenssimon/eslint-config-base": "^8.0.0",
"@jenssimon/eslint-config-sfcc": "^4.8.0",
"@jest/globals": "^29.7.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.18.0",
"eslint-plugin-jest": "^28.10.0",
"husky": "^9.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.0.2",
"pinst": "^3.0.0",
"semantic-release": "^24.0.0"
},
"files": [
"/lib"
],
"packageManager": "yarn@4.6.0",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"main"
]
}
}