forked from asilvas/node-image-steam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.97 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
{
"name": "image-steam",
"version": "0.34.6",
"description": "A simple, fast, and highly customizable on-the-fly image manipulation web server built atop Node.js.",
"main": "index.js",
"scripts": {
"check-cov": "istanbul 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",
"jscs": "jscs test/",
"jshint": "jshint test/",
"lint": "npm run jshint && npm run jscs",
"mocha": "mocha -w -R spec",
"report": "istanbul report cobertura && istanbul report lcov",
"pretest": "npm run lint",
"test": "npm run test-and-check && npm outdated",
"test-and-check": "npm run unit && npm run report && npm run check-cov",
"unit": "npm run unit-cov",
"unit-cov": "istanbul cover --dir coverage-unit ./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"
},
"dependencies": {
"async": "^2.0.0",
"fs-extra": "^0.30.0",
"knox": "0.9.2",
"lodash": "^3.10.1",
"optimist": "0.6.1",
"semaphore": "1.0.5",
"sharp": "0.16.0",
"xxhash": "0.2.4"
},
"devDependencies": {
"browser-launcher": "^1.0.0",
"chai": "^3.5.0",
"istanbul": "^0.4.4",
"jscs": "^3.0.7",
"jshint": "^2.9.2",
"mocha": "^2.5.3",
"mocha-istanbul": "^0.3.0",
"open": "0.0.5",
"should": "^10.0.0",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0"
}
}