-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 991 Bytes
/
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
{
"name": "node-openjtalk",
"version": "1.1.1",
"description": "Japanese text-to-speech engine binding for NodeJS",
"keywords": [
"OpenJTalk",
"text-to-speech",
"Japanese"
],
"repository": {
"type": "git",
"url": "[email protected]:TanUkkii007/node-openjtalk.git"
},
"main": "index.js",
"scripts": {
"install": "node-pre-gyp install --build-from-source",
"test": "mocha test"
},
"author": "Yusuke Yasuda",
"license": "MIT",
"gypfile": true,
"dependencies": {
"bindings": "^1.2.1",
"nan": "^1.8.4",
"node-pre-gyp": "^0.6.7"
},
"bundledDependencies": [
"node-pre-gyp"
],
"binary": {
"module_name": "node_open_jtalk",
"module_path": "./lib/binding/{node_abi}-{platform}-{arch}",
"remote_path": "./{module_name}/v{version}",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz",
"host": ""
},
"devDependencies": {
"aws-sdk": "^2.1.33",
"mocha": "^2.2.5",
"speaker": "^0.2.5"
}
}