-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
40 lines (40 loc) · 969 Bytes
/
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
{
"name": "brig",
"version": "0.1.17",
"author": "Fred Chiend <[email protected]>",
"description": "Graphical render engine for Node.js",
"repository": {
"type": "git",
"url": "git://github.com/BrigJS/brig.git"
},
"binary": {
"module_name": "brig",
"module_path": "./native/{node_abi}-{platform}-{arch}",
"host": "https://github.com/BrigJS/brig/releases/download/",
"remote_path": "{version}",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz"
},
"homepage": "http://github.com/BrigJS/brig",
"main": "./lib/brig.js",
"keywords": [
"gui",
"ui",
"graphics"
],
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"postinstall": "node setup.js"
},
"bundledDependencies": [
"node-pre-gyp"
],
"devDependencies": {},
"optionalDependencies": {},
"dependencies": {
"nan": ">=2.0.9",
"node-pre-gyp": ">=0.6.36"
}
}