-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.23 KB
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
{
"name": "batch-rename",
"version": "1.0.1",
"description": "File renaming utility.",
"main": "index.js",
"scripts": {
"dev": "tsc-watch",
"test": "jest",
"build": "webpack",
"dev-build": "webpack --mode=development",
"husky-prepare": "husky install",
"clean": "rm -rf dist/*",
"precompile": "npm run clean",
"compile": "tsc",
"ts-exec": "npx ts-node",
"ts-run": "npx ts-node src/index.ts"
},
"author": "Irenej Jerič",
"license": "ISC",
"bin": "dist/index.js",
"type": "module",
"dependencies": {
"commander": "^10.0.1",
"nanoid": "^3.3.4"
},
"devDependencies": {
"@typescript-eslint/parser": "^5.57.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.14.2",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"eslint": "^8.37.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.25.2",
"husky": "^8.0.3",
"jest": "^29.5.0",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tsc-watch": "^6.0.4",
"typescript": "^4.9.5",
"webpack": "^5.85.0",
"webpack-cli": "^5.1.1"
}
}