-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
{
"name": "release-toolkit",
"version": "0.1.0",
"main": "src/index.js",
"repository": "[email protected]:omriLugasi/release-toolkit.git",
"author": "omri luggasi",
"license": "MIT",
"bin": "./src/bin.js",
"scripts": {
"test": "mocha \"__tests__/**/*.test.js\"",
"prepare": "yarn husky install",
"prettier-write": "prettier --write src __tests__",
"prettier-check": "prettier --check src __tests__"
},
"dependencies": {
"axios": "^1.7.2",
"axios-retry": "^4.4.2"
},
"devDependencies": {
"chai": "4",
"husky": "8",
"mocha": "^10.6.0",
"prettier": "^3.3.3",
"sinon": "^18.0.0"
},
"homepage": "https://github.com/omriLugasi/release-toolkit#readme",
"keywords": [
"author",
"automation",
"changelog",
"module",
"package",
"publish",
"release",
"semver",
"version",
"release-toolkit",
"monorepo",
"release",
"manager"
]
}