-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 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
{
"name": "saxon-node",
"description": "An exploration of binding Saxon/C",
"version": "0.2.2",
"main": "./index.js",
"author": {
"name": "roger",
"email": "mathmldashx@yahoo.com"
},
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rimmartin/saxon-node"
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"node-pre-gyp": "0.14.0"
},
"bundledDependencies": [
"node-pre-gyp"
],
"devDependencies": {
"co": "4.6.0",
"should": "13.2.3",
"mocha": "6.2.2",
"aws-sdk": "2.568.0"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build --jobs max ",
"prebuild": "node-pre-gyp rebuild && node-pre-gyp package",
"test": "export NODE_PATH=`pwd`/build/Release:$NODE_PATH && mocha --harmony --require should --timeout 7000 "
},
"binary": {
"module_name": "saxonXslt",
"module_path": "./lib/binding/",
"host": "https://saxon-node.s3-us-west-2.amazonaws.com",
"remote_path": "./v{version}"
},
"bugs": {
"url": "https://github.com/rimmartin/saxon-node/issues"
}
}