-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.15 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
{
"name": "xmm-node",
"version": "0.4.1",
"description": "node wrapper for the xmm library",
"main": "index.js",
"scripts": {
"install": "node-pre-gyp install --fallback-to-build > log.txt 2>&1",
"doc": "jsdoc2md -t docs/README.hbs docs/documentation.js > README.md",
"test": "babel-tape-runner \"test/*_tests.js\""
},
"author": "Joseph Larralde",
"license": "GPL-3.0-or-later",
"gypfile": true,
"binary": {
"module_name": "xmm",
"module_path": "./build/bin/{configuration}/{node_abi}-{platform}-{arch}/",
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{arch}.tar.gz",
"host": "https://github.com/josephlarralde/test/releases/download/",
"remote_path": "{version}"
},
"bundledDependencies": [
"node-pre-gyp"
],
"dependencies": {
"node-addon-api": "^1.7.1",
"node-pre-gyp": "^0.14.0"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"@ircam/jsdoc-template": "github:ircam-jstools/jsdoc-template",
"babel-tape-runner": "^3.0.0",
"jsdoc-to-markdown": "^5.0.3",
"tape": "^4.11.0",
"xmm-client": "github:ircam-rnd/xmm-client"
}
}