forked from kant2002/lwip
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
96 lines (96 loc) · 2.38 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
96
{
"name": "@randy.tarampi/lwip",
"description": "Comprehensive, fast, and simple image processing and manipulation",
"version": "3.0.17",
"author": {
"name": "Randy Tarampi",
"email": "[email protected]",
"url": "https://www.randytarampi.ca"
},
"bugs": "https://github.com/randytarampi/lwip/issues",
"dependencies": {
"async": "^3.2.0",
"bindings": "^1.5.0",
"decree": "^0.0.6",
"nan": "^2.14.2",
"snyk": "^1.685.0"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"coveralls": "^3.1.1",
"eslint": "^7.28.0",
"eslint-plugin-import": "^2.23.4",
"mkdirp": "^1.0.4",
"mocha": "^8.4.0",
"mocha-junit-reporter": "^2.0.0",
"node-cpplint": "^0.4.0",
"nyc": "^15.1.0",
"run-script-os": "^1.1.6",
"semantic-release": "^17.4.3",
"should": "^13.2.3"
},
"directories": {
"example": "examples",
"lib": "lib",
"test": "tests"
},
"engines": {
"node": ">=10"
},
"gypfile": true,
"homepage": "https://github.com/randytarampi/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": "randytarampi/lwip.git",
"scripts": {
"cover": "npm run cover:actual",
"cover:actual": "nyc mocha --config ./tests/.mocharc.js 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",
"prepare": "npm run snyk-protect",
"pretest": "npm run lint:js",
"snyk-protect": "snyk protect",
"test": "mocha --config ./tests/.mocharc.js tests"
},
"snyk": false,
"typings": "typings.d.ts"
}