forked from jimp-dev/jimp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 3.11 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "jimp",
"version": "0.2.28",
"description": "An image processing library written entirely in JavaScript (i.e. zero external or native dependencies).",
"main": "jimp.js",
"types": "./jimp.d.ts",
"scripts": {
"lint": "npm run -s lint:src && npm run -s lint:browser && npm run -s lint:tests && npm run -s lint:extra && echo Lint All Success",
"lint:src": "eslint *.js src/*.js browser/src/*.js && echo Lint Source Success",
"lint:tests": "eslint --env 'mocha' --rule '{no-new: \"off\"}' test/*.js && echo Lint Tests Success",
"lint:browser": "eslint --rule '{no-new: \"off\"}' browser/src/*.js && echo Lint Browser Success",
"lint:extra": "eslint --rule '{no-console: \"off\"}' {*/,}{tools,examples}/*.js && echo Lint Extras Success",
"test:karma": "CHROME_BIN=\"$(which chrome || which chromium)\" karma",
"test:browser:run": "npm run -s test:karma run",
"test:browser:once": "npm run -s test:karma start -- --single-run",
"test:browser:watch": "npm run -s test:karma start -- --auto-watch",
"test:node:run": "mocha",
"test:node:once": "istanbul cover _mocha ./test/*.test.js",
"test:node:once:nocover": "mocha ./test/*.test.js",
"test:node:watch": "mocha --reporter min --watch ./test/*.test.js",
"test:without-lint": "npm run -s test:node:once && npm run -s test:browser:once",
"test": "npm run -s lint && npm run -s test:without-lint",
"test:old": "./test/tests.sh",
"browser-build": "node tools/browser-build.js test",
"prepublish": "node tools/browser-build.js prepublish"
},
"keywords": [
"image",
"image processing",
"image manipulation",
"png",
"jpg",
"jpeg",
"bmp",
"resize",
"scale",
"crop"
],
"author": "Oliver Moran <[email protected]>",
"license": "MIT",
"dependencies": {
"bignumber.js": "^2.1.0",
"bmp-js": "0.0.3",
"buffer": "^5.0.2",
"es6-promise": "^3.0.2",
"exif-parser": "^0.1.9",
"file-type": "^3.1.0",
"jpeg-js": "^0.2.0",
"load-bmfont": "^1.2.3",
"mime": "^1.3.4",
"mkdirp": "0.5.1",
"pixelmatch": "^4.0.0",
"pngjs": "^3.0.0",
"request": "^2.65.0",
"stream-to-buffer": "^0.1.0",
"tinycolor2": "^1.1.2"
},
"devDependencies": {
"babel": "^6.0.14",
"babel-cli": "^6.0.0",
"babel-preset-es2015": "^6.0.14",
"babel-preset-stage-0": "^6.0.14",
"browserify": "^14.3.0",
"envify": "^3.4.0",
"eslint": "^3.14.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.1",
"eslint-plugin-standard": "^2.0.1",
"express": "^4.13.4",
"istanbul": "^0.4.5",
"karma": "^1.4.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-generic-preprocessor": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-own-reporter": "^1.1.2",
"mocha": "^3.2.0",
"should": "^11.1.2",
"uglify-js": "^2.7.5"
},
"repository": {
"type": "git",
"url": "https://github.com/oliver-moran/jimp.git"
},
"bugs": {
"url": "https://github.com/oliver-moran/jimp/issues"
},
"tonicExampleFilename": "example.js",
"browser": "browser/lib/jimp.js"
}