-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.18 KB
/
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
{
"name": "@amcolash/simple-image-server",
"version": "1.3.1",
"description": "A small server that hosts images (similar to simplehttpserver)",
"main": "index.js",
"bin": {
"simple-image-server": "./index.js"
},
"scripts": {
"start": "nodemon -e js --exec \"node index.js -p 3000 -c .cert/cert.pem -k .cert/privkey.pem -w test/\"",
"basic": "nodemon -e js --exec \"node index.js -p 3000 -c .cert/cert.pem -k .cert/privkey.pem test/\"",
"start-win": "nodemon -e js --exec \"node index.js -p 3000 -c .cert/cert.pem -k .cert/privkey.pem -w ~/Videos/Captures/\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/amcolash/simple-image-server.git"
},
"author": "Andrew McOlash",
"license": "MIT",
"bugs": {
"url": "https://github.com/amcolash/simple-image-server/issues"
},
"homepage": "https://github.com/amcolash/simple-image-server#readme",
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.3",
"get-all-files": "^4.1.0",
"image-size": "^1.0.1",
"screenshot-desktop": "^1.12.7",
"sharp": "^0.30.3",
"yargs": "^17.4.0"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}