-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
75 lines (75 loc) · 2.12 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "image-steam",
"version": "0.64.3",
"description": "A simple, fast, and highly customizable realtime image manipulation web server built atop Node.js.",
"main": "index.js",
"scripts": {
"bench": "./packages/image-steam-bench/bin/isteamb run http://localhost:13337/isteamb",
"check-cov": "nyc check-coverage --statements 70 --functions 75 --branches 50 --lines 70 || node scripts/launch-coverage-in-browser",
"start": "node ./scripts/server.js --isConfig ./scripts/dev.js --isDemo true",
"nodemo": "node ./scripts/server.js --isConfig ./scripts/dev.js",
"mocha": "mocha -w -R spec",
"prettier": "npx prettier --write lib test",
"report": "nyc report --reporter=cobertura && nyc report --reporter=lcov",
"test": "npm run prettier && npm run test-and-check && npm outdated",
"test-and-check": "npm run unit && npm run report && npm run check-cov",
"unit": "npx nyc ./node_modules/mocha/bin/_mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asilvas/node-image-steam.git"
},
"keywords": [
"image",
"steam",
"processor"
],
"author": {
"name": "Aaron Silvas"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/asilvas/node-image-steam/issues"
},
"homepage": "https://github.com/asilvas/node-image-steam#readme",
"bin": {
"image-steam": "./bin/isteam",
"isteam": "./bin/isteam",
"isteamd": "./bin/isteamd"
},
"engines": {
"node": ">=14.3.0"
},
"files": [
"bin",
"lib",
"index.js",
"LICENSE.txt",
"README.md",
"CHANGELOG.md",
"package.json"
],
"dependencies": {
"agentkeepalive": "^4.2.1",
"async": "^3.2.3",
"fs-extra": "^10.0.1",
"image-pal-sharp": "^1.2.2",
"lodash": "^4.17.21",
"mime": "^3.0.0",
"semaphore": "^1.1.0",
"sharp": "^0.33.3",
"xxhash": "^0.3.0",
"yargs": "^17.3.1"
},
"devDependencies": {
"browser-launcher": "^4.0.0",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"open": "^8.4.0",
"prettier": "^2.5.1",
"should": "^13.2.3",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0"
}
}