-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.7 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
49
50
51
52
53
{
"name": "@mathquis/node-kaldi-online-nnet3-decoder",
"version": "1.0.3",
"description": "ASR online decoding using Kaldi NNet3 GrammarFST",
"main": "lib/index.js",
"gypfile": true,
"binary": {
"module_name": "kaldi",
"module_path": "./lib/binding/{configuration}/{node_abi}-{platform}-{arch}/",
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{arch}.tar.gz",
"host": "https://github.com/mathquis/node-kaldi-online-nnet3-decoder/releases/download/",
"remote_path": "{version}"
},
"scripts": {
"clean": "cmake-js clean",
"build": "cmake-js compile Release && npm test",
"rebuild": "npm run clean && npm run build",
"preinstall": "npm install @mapbox/node-pre-gyp",
"install": "node-pre-gyp install --fallback-to-build",
"package": "node-pre-gyp package",
"test": "node test/test.js \"test/test*.wav\"",
"release": "node-pre-gyp-github publish --release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mathquis/node-kaldi-online-nnet3-decoder.git"
},
"keywords": [
"asr",
"kaldi",
"nnet3",
"grammar",
"online",
"node"
],
"author": "Mathieu \"Fastjack\" Quisefit",
"license": "ISC",
"bugs": {
"url": "https://github.com/mathquis/node-kaldi-online-nnet3-decoder/issues"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.9",
"cmake-js": "^6.3.0",
"node-addon-api": "^2.0.2",
"node-pre-gyp": "^0.17.0"
},
"homepage": "https://github.com/mathquis/node-kaldi-online-nnet3-decoder#readme",
"devDependencies": {
"@mathquis/node-pre-gyp-github": "^1.0.2",
"glob": "^7.2.0",
"wavefile": "^11.0.0"
}
}