This repository has been archived by the owner on Jul 16, 2020. It is now read-only.
forked from EyalAr/lwip
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
95 lines (95 loc) · 2.28 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
91
92
93
94
95
{
"name": "@mcph/lwip",
"version": "2.0.0",
"main": "lib/obtain.js",
"typings": "typings.d.ts",
"dependencies": {
"async": "^3.1.0",
"bindings": "^1.5.0",
"decree": "^0.0.6",
"nan": "^2.14.0"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.6",
"@semantic-release/git": "^7.0.18",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.19.1",
"mkdirp": "^0.5.1",
"mocha": "^7.0.0",
"mocha-lcov-reporter": "^1.3.0",
"node-cpplint": "^0.4.0",
"nyc": "^15.0.0",
"run-script-os": "^1.0.7",
"semantic-release": "^16.0.0",
"should": "^13.2.3"
},
"directories": {
"example": "examples",
"lib": "lib",
"test": "tests"
},
"engines": {
"node": ">=8"
},
"scripts": {
"cover": "npm run cover:actual",
"cover:actual": "nyc mocha --opts ./tests/mocha.opts tests",
"coveralls": "run-script-os",
"coveralls:darwin:linux": "cat ./coverage/lcov.info | coveralls",
"coveralls:win32": "type ./coverage/lcov.info | coveralls",
"install": "node-gyp rebuild -j 8",
"lint": "npm run lint:js && npm run lint:cpp",
"lint:cpp": "node-cpplint cpp,h src/**/* $(grep ^.*$ CPPLINT.cfg | sed 's/filter=/filters=/g' | awk '{print \"--\"$0}' ORS=' ' | tr '=' ' ' | tr ',' ' ' | tr '/' '-')\n",
"lint:js": "eslint **/*.js",
"pretest": "npm run lint:js",
"test": "mocha --opts ./tests/mocha.opts tests"
},
"gypfile": true,
"description": "Comprehensive, fast, and simple image processing and manipulation",
"repository": {
"type": "git",
"url": "https://github.com/EyalAr/lwip.git"
},
"keywords": [
"image",
"buffer",
"manipulate",
"process",
"resize",
"scale",
"rotate",
"jpeg",
"jpg",
"png",
"gif",
"crop",
"blur",
"sharpen",
"batch",
"flip",
"mirror",
"border",
"padding",
"hue",
"saturation",
"lightness",
"alpha",
"transparency",
"fade",
"opacity",
"contain",
"cover"
],
"author": "Eyal Arubas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/EyalAr/lwip/issues"
},
"homepage": "https://github.com/EyalAr/lwip",
"prettier": {
"trailingComma": "all",
"singleQuote": true,
"printWidth": 100
}
}