-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
66 lines (66 loc) · 1.69 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
{
"name": "node-gtk",
"version": "0.14.0",
"description": "GNOME Gtk+ bindings for NodeJS",
"main": "lib/index.js",
"scripts": {
"install": "npx node-pre-gyp install --fallback-to-build",
"test": "mocha tests/__run__.js",
"build": "npx node-pre-gyp build",
"build:full": "npx node-pre-gyp rebuild",
"configure": "npx node-pre-gyp configure --debug"
},
"repository": {
"type": "git",
"url": "git+https://github.com/romgrk/node-gtk.git"
},
"keywords": [
"GNOME",
"gobject-introspection",
"GObject",
"Gtk+",
"Gtk",
"cairo"
],
"author": "Jasper St. Pierre",
"contributors": [
"Romain Grégoire <[email protected]> (https://github.com/romgrk)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/romgrk/node-gtk/issues"
},
"homepage": "https://github.com/romgrk/node-gtk#readme",
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.10",
"lodash.camelcase": "4.3.0",
"lodash.isequal": "4.5.0",
"lodash.snakecase": "^4.1.1",
"nan": "^2.17.0",
"node-gyp": "^9.3.1",
"remove-trailing-spaces": "^1.0.7",
"unindent": "^2.0.0"
},
"devDependencies": {
"assert": "^1.5.0",
"aws-sdk": "^2.452.0",
"chalk": "^2.4.2",
"deasync": "^0.1.19",
"mocha": "^7.1.0",
"nid-parser": "0.0.5",
"node-pre-gyp-github": "^1.4.3"
},
"files": [
"/lib",
"/src",
"/scripts",
"binding.gyp"
],
"binary": {
"module_name": "node_gtk",
"module_path": "./lib/binding/{node_abi}-{platform}-{arch}/",
"remote_path": "./{module_name}/v{version}/",
"package_name": "{module_name}-{node_abi}-{platform}-{arch}.tar.gz",
"host": "https://node-gtk-1.s3.amazonaws.com"
}
}