-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 935 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 935 Bytes
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
{
"dependencies": {
"express": "latest",
"helmet": "latest",
"mjpeg-server": "latest",
"nocache": "latest",
"puppeteer": "latest"
},
"bin": {
"puppetromium": "src/index.js"
},
"type": "module",
"name": "puppetromium",
"description": "A stupidly simple web-browser based on Puppeteer",
"version": "1.5.0",
"main": "src/index.js",
"scripts": {
"test": "nodemon src/index.js 8080",
"start": "node src/index.js",
"nixinstall": "./scripts/deps.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/i5ik/puppetromium.git"
},
"keywords": [
"puppeteer",
"puppetromium",
"chromium",
"chrome",
"browser"
],
"author": "@dosy",
"license": "MIT",
"bugs": {
"url": "https://github.com/i5ik/puppetromium/issues"
},
"homepage": "https://github.com/i5ik/puppetromium#readme",
"devDependencies": {
"nodemon": "latest"
}
}