forked from palmerabollo/bingspeech-api-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.22 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
{
"name": "bingspeech-api-client",
"version": "2.5.0",
"description": "Microsoft Bing Speech API client",
"author": "Guido García <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib",
"bin"
],
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rm -fR ./lib",
"compile": "tsc",
"lint": "tslint './src/**/*.ts'",
"prepublish": "npm run build",
"test": "npm run build && mocha -R spec 'lib/**/*.spec.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/palmerabollo/bingspeech-api-client.git"
},
"keywords": [
"bing",
"speech",
"microsoft"
],
"dependencies": {
"debug": "^3.1.0",
"needle": "^2.2.1",
"uuid": "^3.0.0"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.1",
"@types/needle": "^2.0.2",
"@types/nock": "^9.1.3",
"@types/node": "^6.0.40",
"@types/sinon": "^5.0.1",
"@types/sinon-chai": "^2.7.32",
"@types/uuid": "^3.4.3",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"nock": "^9.3.2",
"sinon": "^5.1.0",
"sinon-chai": "^3.1.0",
"tslint": "^5.10.0",
"typescript": "^2.9.1"
}
}