forked from Rantanen/node-celt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.16 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
{
"name": "electron-celt",
"description": "A fork of node-celt, supporting electron builds",
"version": "0.2.1",
"author": "Mikko Rantanen <jubjub@jubjubnest.net>",
"contributors": [
"Justin Chase <justin@evolvelabs.com>"
],
"homepage": "https://github.com/evolvelabs/electron-celt",
"bugs": "https://github.com/evolvelabs/electron-celt/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/evolvelabs/electron-celt.git"
},
"main": "./index.js",
"scripts": {
"install": "bash ./node_modules/.bin/elinst"
},
"//": "Platform limitations is due to lack of config.h files. See README.md for more information.",
"os": [
"linux",
"darwin",
"freebsd",
"win32"
],
"cpu": [
"x64",
"arm",
"ia86"
],
"engines": {
"node": ">=3.2.0",
"electron": "~0.31.0"
},
"binaries": [
"https://s3.amazonaws.com/evolve-bin/{name}/{name}-{version}-{platform}-{arch}-{configuration}.tgz"
],
"dependencies": {
"bindings": "*",
"electron-updater-tools": "~0.2.0"
},
"devDependencies": {
"nan": "~2.0.0"
},
"bundledDependencies": [ "electron-updater-tools" ]
}