-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.48 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.48 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "node-gd",
"version": "3.0.0",
"description": "GD graphics library (libgd) C++ bindings for Node.js",
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"directories": {
"test": "test",
"doc": "docs"
},
"files": [
"lib",
"src",
"binding.gyp",
"util.sh",
"CONTRIBUTORS.md",
"index.d.ts",
"test/*.test.js",
"test/fixtures/*",
"prebuilds"
],
"os": [
"!win32"
],
"engines": {
"node": ">=20"
},
"binary": {
"napi_versions": [3, 4, 5, 6, 7, 8, 9]
},
"homepage": "https://github.com/y-a-v-a/node-gd",
"bugs": "https://github.com/y-a-v-a/node-gd/issues",
"scripts": {
"clean": "rm -rf test/output/* build/ prebuilds/",
"rebuild": "node-gyp rebuild -j max",
"pretest": "node-gyp build -j max",
"test": "./node_modules/.bin/mocha --reporter spec --bail --ui bdd --colors --file ./test/main.test.mjs",
"install": "node-gyp-build || node-gyp rebuild -j max",
"prebuild": "prebuildify --napi --strip",
"prebuild-all": "prebuildify --napi --strip --arch x64 --arch arm64",
"prebuild-upload": "prebuildify --napi --strip --upload-all",
"update-contributors": "git shortlog -sen | sed 's/^ /*/' > CONTRIBUTORS.md",
"docker-build": "docker build --progress=plain -t yava:node-gd .",
"docker-run": "docker run -it -v $PWD:/usr/src yava:node-gd"
},
"repository": {
"type": "git",
"url": "git://github.com/y-a-v-a/node-gd.git"
},
"keywords": [
"libgd",
"libgd2",
"gd",
"image",
"png",
"jpg",
"jpeg",
"gif",
"graphics",
"library"
],
"author": "Taegon Kim <gonom9@gmail.com>",
"license": "MIT",
"contributors": [
{
"name": "Dudochkin Victor",
"email": "blacksmith@gogoo.ru"
},
{
"name": "Andris Reinman",
"email": "andris@node.ee"
},
{
"name": "Peter Magnusson"
},
{
"name": "Damian Senn",
"email": "damian.senn@adfinis-sygroup.ch"
},
{
"name": "Farrin Reid"
},
{
"name": "Josh (zer0x304)"
},
{
"name": "Mike Smullin",
"email": "mike@smullindesign.com"
},
{
"name": "Vincent Bruijn (y_a_v_a)",
"email": "vebruijn@gmail.com"
}
],
"gypfile": true,
"readmeFilename": "README.md",
"devDependencies": {
"chai": "^5.2.1",
"mocha": "^11.7.1",
"prebuildify": "^6.0.0"
},
"dependencies": {
"node-addon-api": "^8.4.0",
"node-gyp": "^11.2.0",
"node-gyp-build": "^4.8.0"
}
}