-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.17 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.17 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": "@streetbyters/js-debug",
"version": "0.1.3",
"description": "Simple, practical Javascript|NodeJS Debug Logging",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier --write \"**/*.{js,ts,md,json}\" --ignore-path .prettierignore",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/streetbyters/js-debug.git"
},
"keywords": [
"javascript",
"nodejs",
"debug",
"logging"
],
"author": "Streetbyters Community <https://github.com/streetbyters>",
"license": "MIT",
"bugs": {
"url": "https://github.com/streetbyters/js-debug/issues"
},
"homepage": "https://github.com/streetbyters/js-debug#readme",
"packageManager": "pnpm@10.28.0",
"dependencies": {
"moment": "^2.30.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.5.0",
"prettier": "^3.7.4"
},
"engines": {
"node": ">= 20.19.5",
"npm": ">= 9.6.7",
"yarn": ">= 1.22.19",
"pnpm": ">= 10.18.0"
}
}