-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
83 lines (83 loc) · 1.72 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
{
"name": "ghostscript4js",
"description": "Bindings for the Ghostscript C API to the Node.JS world.",
"version": "3.2.3",
"contributors": [
{
"name": "Nicola Del Gobbo",
"email": "[email protected]"
},
{
"name": "Mauro Doganieri",
"email": "[email protected]"
},
{
"name": "Alexander Prinzhorn",
"email": "[email protected]"
},
{
"name": "Eric Semeniuc",
"url": "https://github.com/esemeniuc"
},
{
"name": "George Gershevich",
"email": "[email protected]"
},
{
"name": "Loren Yu",
"email": "[email protected]"
},
{
"name": "Samuel Bronson",
"url": "https://github.com/SamB"
}
],
"keywords": [
"ghostscript",
"postscript",
"native",
"pdf",
"ps",
"eps"
],
"license": "Apache-2.0",
"scripts": {
"test": "node node_modules/jasmine/bin/jasmine.js JASMINE_CONFIG_PATH=test/jasmine.json",
"debug": "node-gyp rebuild --debug"
},
"engines": {
"node": ">= 6.0.0"
},
"gypfile": true,
"repository": {
"type": "git",
"url": "https://github.com/NickNaso/ghostscript4js.git"
},
"bugs": {
"url": "https://github.com/NickNaso/ghostscript4js/issues"
},
"homepage": "http://www.nacios.it/",
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^2.0.0"
},
"devDependencies": {
"jasmine": "^3.5.0"
},
"main": "./index.js",
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"binding.gyp",
"index.js",
"gs4js-env-home.js",
"gs4js-env-lib.js",
"gs4js-env-dll.js",
"macOS-lib-path-finder.js",
"binding.gyp",
"lib/",
"src/"
]
}