-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 987 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
36
37
38
39
40
41
42
{
"name": "devtoolium",
"version": "1.4.0",
"description": "Simple Browser with DevTools based on Chrome DevTools. Remote Browser Server. Produced by The Dosyago Corporation.",
"type": "module",
"main": "src/index.js",
"bin": {
"devtoolium": "src/index.js"
},
"scripts": {
"test": "nodemon src/index.js",
"start": "node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/i5ik/devtoolium.git"
},
"keywords": [
"devtools",
"remote-devtools",
"secure",
"authentication",
"debugging",
"collaboration"
],
"author": "@dosy",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/i5ik/devtoolium/issues"
},
"homepage": "https://github.com/i5ik/devtoolium#readme",
"dependencies": {
"compression": "^1.7.4",
"cookie-parser": "latest",
"express": "^4.17.1",
"sync-fetch": "^0.3.0",
"ws": "^7.5.4"
},
"devDependencies": {
"nodemon": "^2.0.12"
}
}