-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.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": "3.1.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'",
"prepare": "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": "^4.1.1",
"needle": "^2.3.2",
"uuid": "^3.4.0"
},
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/mocha": "^7.0.1",
"@types/needle": "^2.0.4",
"@types/nock": "^11.1.0",
"@types/node": "^10.17.15",
"@types/sinon": "^7.5.1",
"@types/sinon-chai": "^3.2.3",
"@types/uuid": "^3.4.7",
"chai": "^4.2.0",
"mocha": "^7.0.1",
"nock": "^11.8.2",
"sinon": "^8.1.1",
"sinon-chai": "^3.4.0",
"tslint": "^6.0.0",
"typescript": "^3.7.5"
}
}