forked from ShogunPanda/fastimage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.78 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
{
"name": "fastimage",
"version": "1.0.2",
"description": "FastImage finds the size or type of an image given its URL by fetching as little as needed.",
"main": "main.js",
"files": [
"main.js",
"lib",
"examples",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"postpublish": "git tag -f v-$npm_package_version && git push origin --tags && git push origin",
"test": "./node_modules/.bin/mocha",
"posttest": "./node_modules/.bin/eslint main.js lib/*.js",
"coverage": "./node_modules/.bin/mocha --require blanket -R html-cov > coverage.html; true",
"travis-ci": "./node_modules/.bin/mocha --require blanket -R mocha-lcov-reporter | ./node_modules/coveralls/bin/coveralls.js; true",
"docs": "./node_modules/.bin/jsdoc -c jsdoc.conf"
},
"repository": {
"type": "git",
"url": "https://github.com/ShogunPanda/fastimage"
},
"keywords": [
"fast",
"fastimage",
"image",
"size",
"dimensions",
"resolution",
"width",
"height",
"png",
"jpeg",
"bmp",
"gif",
"psd",
"tiff",
"webp",
"svg"
],
"author": "Shogun <shogun@cowtech.it>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ShogunPanda/fastimage/issues"
},
"homepage": "https://sw.cowtech.it/fastimage",
"devDependencies": {
"blanket": "^1.1.6",
"coveralls": "^2.11.2",
"eslint": "^0.17.1",
"expect.js": "^0.3.1",
"jsdoc": "^3.3.0-beta2",
"mocha": "~2.1.0",
"mocha-lcov-reporter": "0.0.2",
"sepia": "^2.0.1",
"through": "^2.3.6"
},
"config": {
"blanket": {
"pattern": [
"main.js",
"lib"
],
"data-cover-never": "node_modules"
}
},
"dependencies": {
"image-size": "^0.3.5",
"promise": "^7.0.1",
"request": "^2.54.0"
}
}