-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 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
{
"name": "dds-node-adapter",
"version": "0.3.0",
"description": "node adapter for dds double-dummy solver",
"main": "./index.js",
"author": "Frank Wallis",
"repository": {
"type": "git",
"url": "git://github.com/frankwallis/dds-node-adapter.git"
},
"binary": {
"module_name": "dds_node_adapter",
"module_path": "./lib/binding/{configuration}/{node_abi}-{platform}-{arch}/",
"remote_path": "./{module_name}/v{version}/{configuration}/",
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{arch}.tar.gz",
"host": "https://dds-node-adapter.s3-eu-west-1.amazonaws.com"
},
"dependencies": {
"napa": "^3.0.0",
"node-pre-gyp": "^0.12.0"
},
"scripts": {
"install": "napa dds-bridge/dds && node-pre-gyp install --fallback-to-build",
"clean": "node-pre-gyp clean",
"build": "node-pre-gyp build",
"rebuild": "node-pre-gyp reinstall --build-from-source",
"deploy": "node-pre-gyp package publish",
"test": "mocha --timeout 30000"
},
"devDependencies": {
"aws-sdk": "^2.112.0",
"chai": "^4.1.2",
"mocha": "^3.5.2"
},
"engines": {
"node": ">=4.1"
},
"license": "Apache-2.0"
}