-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
35 lines (35 loc) · 859 Bytes
/
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
{
"name": "auto-breakpointer",
"version": "1.1.0",
"description": "Automated JavaScript Debugging Tool using Chrome DevTools Protocol",
"main": "src/autobreakpointer.js",
"bin": {
"auto-breakpointer": "./src/autobreakpointer.js"
},
"scripts": {
"start": "node src/autobreakpointer.js",
"example": "node examples/basic.js"
},
"keywords": [
"debugging",
"chrome",
"devtools",
"breakpoints",
"automation"
],
"author": "m4ll0k",
"license": "MIT",
"dependencies": {
"chrome-remote-interface": "^0.32.1"
},
"engines": {
"node": ">=12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/m4ll0k/autobreakpointer.git"
},
"bugs": {
"url": "https://github.com/m4ll0k/autobreakpointer/issues"
}
}