UNPKG

1.1 kBJSONView Raw
1{
2 "name": "dbgr",
3 "version": "1.0.0",
4 "description": "Lightweight debugger for Node.js",
5 "keywords": [
6 "debugger",
7 "node.js",
8 "lightweight"
9 ],
10 "license": "MIT",
11 "repository": "privatenumber/dbgr",
12 "funding": "https://github.com/privatenumber/dbgr?sponsor=1",
13 "author": {
14 "name": "Hiroki Osame",
15 "email": "hiroki.osame@gmail.com"
16 },
17 "files": [
18 "dist"
19 ],
20 "main": "dist/index.js",
21 "types": "dist/index.d.ts",
22 "scripts": {
23 "build": "tsc",
24 "start": "node dist",
25 "lint": "eslint ."
26 },
27 "husky": {
28 "hooks": {
29 "pre-commit": "lint-staged"
30 }
31 },
32 "lint-staged": {
33 "*.ts": "eslint"
34 },
35 "dependencies": {
36 "acorn-loose": "^8.0.2",
37 "caller-path": "^3.0.0",
38 "callsites": "^3.1.0",
39 "esbuild": "^0.11.12",
40 "estree-walker": "^2.0.2"
41 },
42 "devDependencies": {
43 "@pvtnbr/eslint-config-typescript": "^0.1.14",
44 "@types/estree": "^0.0.47",
45 "@types/node": "^14.14.41",
46 "eslint": "^7.24.0",
47 "esno": "^0.5.0",
48 "husky": "^4.0.0",
49 "lint-staged": "^10.5.4",
50 "typescript": "^4.2.4"
51 },
52 "eslintConfig": {
53 "extends": "@pvtnbr/eslint-config-typescript"
54 }
55}