forked from y-a-v-a/node-gd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.13 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
97
98
99
{
"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/*"
],
"os": [
"!win32"
],
"engines": {
"node": ">=14"
},
"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/",
"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 rebuild -j max",
"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 <[email protected]>",
"license": "MIT",
"contributors": [
{
"name": "Dudochkin Victor",
"email": "[email protected]"
},
{
"name": "Andris Reinman",
"email": "[email protected]"
},
{
"name": "Peter Magnusson"
},
{
"name": "Damian Senn",
"email": "[email protected]"
},
{
"name": "Farrin Reid"
},
{
"name": "Josh (zer0x304)"
},
{
"name": "Mike Smullin",
"email": "[email protected]"
},
{
"name": "Vincent Bruijn (y_a_v_a)",
"email": "[email protected]"
}
],
"gypfile": true,
"readmeFilename": "README.md",
"devDependencies": {
"chai": "4.3.6",
"mocha": "^10.0.0"
},
"dependencies": {
"node-addon-api": "^5.0.0",
"node-gyp": "9.0.0"
}
}