-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 942 Bytes
/
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
{
"name": "sfcc-utils",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "mocha './test/**/*.spec.js'",
"jsdocs": "jsdoc -c ./jsdoc.json",
"prepare": "husky && husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/murceca/SFCC-Utils.git"
},
"author": "Svitlana Hryshchuk",
"license": "MIT",
"bugs": {
"url": "https://github.com/murceca/SFCC-Utils/issues"
},
"homepage": "https://github.com/murceca/SFCC-Utils#readme",
"devDependencies": {
"chai": "^4.3.10",
"docdash": "^2.0.2",
"eslint": "^8.56.0",
"eslint-plugin-mocha": "^10.2.0",
"husky": "^8.0.0",
"jsdoc": "^4.0.2",
"lint-staged": "^15.2.2",
"mocha": "^10.2.0",
"proxyquire": "^2.1.3"
},
"dependencies": {
"sinon": "^17.0.1"
}
}