forked from quantlibnode/quantlibnode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.08 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
{
"name": "quantlib",
"description": "QuantLib Asyn Bindings for Node.js",
"version": "0.3.0",
"keywords": [
"quantlib"
],
"main": "lib/quantlib.js",
"repository": {
"type": "git",
"url": "https://github.com/quantlibnode/quantlibnode.git"
},
"directories": {
"build": "./build",
"lib": "./lib"
},
"engines": {
"node": ">= 0.12"
},
"bundledDependencies": [
"node-pre-gyp"
],
"dependencies": {
"fs-extra": "~0.26.2",
"node-pre-gyp": "~0.6.15",
"promisify-node": "~0.3.0"
},
"devDependencies": {
"nan": "^2.2.0",
"node-gyp": "~3.0.3"
},
"scripts": {
"prepublish": "npm prune",
"postinstall": "node-pre-gyp install"
},
"binary": {
"module_name": "quantlib",
"module_path": "./build/Release/quantlib.node",
"host": "https://github.com",
"package_name": "{platform}-{arch}.tar.gz",
"remote_path": "./quantlibnode/quantlibnode/releases/download/v{version}/"
},
"bugs": {
"url": "http://github.com/quantlibnode/quantlibnode/issues"
},
"author": "Jerry Jin",
"license": "MIT"
}