forked from EyalAr/lwip
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
89 lines (89 loc) · 2.21 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
{
"name": "@kant2002/lwip",
"description": "Comprehensive, fast, and simple image processing and manipulation",
"version": "1.2.0",
"author": "Eyal Arubas <[email protected]>",
"bugs": "https://github.com/EyalAr/lwip/issues",
"dependencies": {
"async": "^3.1.0",
"bindings": "^1.5.0",
"decree": "0.0.6",
"nan": "^2.14.0"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/git": "^7.0.8",
"coveralls": "^3.0.3",
"eslint": "^5.15.1",
"eslint-plugin-import": "^2.16.0",
"mkdirp": "^0.5.1",
"mocha": "^6.0.2",
"mocha-lcov-reporter": "^1.3.0",
"node-cpplint": "^0.4.0",
"nyc": "^13.3.0",
"run-script-os": "^1.0.5",
"semantic-release": "^15.13.3",
"should": "^13.2.3"
},
"directories": {
"example": "examples",
"lib": "lib",
"test": "tests"
},
"engines": {
"node": ">=6"
},
"gypfile": true,
"homepage": "https://github.com/EyalAr/lwip",
"keywords": [
"alpha",
"batch",
"blur",
"border",
"buffer",
"contain",
"cover",
"crop",
"fade",
"flip",
"gif",
"hue",
"image",
"jpeg",
"jpg",
"lightness",
"manipulate",
"mirror",
"opacity",
"padding",
"png",
"process",
"resize",
"rotate",
"saturation",
"scale",
"sharpen",
"transparency"
],
"license": "MIT",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"repository": "EyalAr/lwip.git",
"scripts": {
"cover": "npm run cover:actual",
"cover:actual": "nyc mocha --opts ./tests/mocha.opts tests",
"cover:collect": "run-script-os",
"cover:collect:darwin:linux": "cat ./coverage/lcov.info | coveralls",
"cover:collect:win32": "type ./coverage/lcov.info | coveralls",
"install": "node-gyp rebuild -j 8",
"pretest": "npm run lint:js",
"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",
"test": "mocha --opts ./tests/mocha.opts tests",
"travis": "npm run cover"
},
"typings": "typings.d.ts"
}