-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "testor-sterone",
"version": "0.0.7",
"description": "Test HDDs for failures.",
"author": "da-mkay (https://github.com/da-mkay)",
"license": "MIT",
"keywords": [
"test",
"check",
"block device",
"ssd",
"hdd",
"usb",
"disk"
],
"repository": {
"type": "git",
"url": "git+https://github.com/da-mkay/testor-sterone.git"
},
"scripts": {
"build": "rimraf dist && tsc --project tsconfig.build.json",
"bundle": "rimraf dist && webpack",
"test": "jest",
"prepare": "husky",
"lint-staged": "lint-staged"
},
"bin": {
"testor-sterone": "dist/testor-sterone.js"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^18.17.1",
"husky": "^9.0.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.11",
"prettier": "^3.2.4",
"rimraf": "^5.0.10",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}