-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.42 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.42 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
48
49
50
51
52
53
{
"name": "dephook",
"version": "1.0.2",
"description": "A CLI focused on security & visibility of dependencies, inspecting Node.js projects for install/prepare hooks and binaries.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"dephook": "dist/bin.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build:types": "tsc --noEmit",
"test": "jest",
"lint": "eslint src test",
"lint:fix": "eslint src test --fix",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build && npm run test",
"prepare": "husky"
},
"author": "Francisco Pinto-Santos",
"repository": {
"type": "git",
"url": "git+https://github.com/GandalFran/dephook.git"
},
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.1.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"globals": "^15.0.0",
"husky": "^9.0.0",
"jest": "^29.7.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.0",
"typescript-eslint": "^8.56.1"
}
}