-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.22 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
{
"name": "@igorpronin/utils",
"version": "1.0.7",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"clear": "rm -rf ./dist",
"dev": "nodemon ./src/index.ts",
"test": "jest",
"format": "prettier --write \"./src/**/*.ts\"",
"format:tools": "prettier --write \"./tools/*.js\"",
"stats": "./tools/git-daily-stats.sh",
"watch": "node ./tools/file-watcher.js",
"permit": "chmod +x ./tools/update-version.sh && chmod +x ./tools/git-commit.sh && chmod +x ./tools/release.sh && chmod +x ./tools/build-and-publish.sh && chmod +x ./tools/git-daily-stats.sh",
"git": "./tools/git-commit.sh",
"release:patch": "npm run clear && ./tools/release.sh patch",
"release:minor": "npm run clear && ./tools/release.sh minor"
},
"repository": {
"type": "git",
"url": "git+https://github.com/igorpronin/utils.git"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^20.11.26",
"@types/ws": "^8.5.10",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"author": "legalsolut@gmail.com",
"license": "ISC"
}