-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.48 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
54
55
{
"name": "avs-api",
"version": "1.0.0",
"description": "Alexa Voice Service V2 API which utilities streaming and HTTP/2",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "npm run lint",
"build": "tsc --p .",
"lint": "tslint --project .",
"prepublishOnly": "rimraf dist && npm run build",
"spell": "cspell \"src/**/*.ts\"",
"example": "node --expose-http2 \"examples/test.js\"",
"mic": "node \"examples/mic-test.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/dolanmiu/Awesome-AVS.git"
},
"keywords": [
"avs",
"alexa",
"alexa-voice-service",
"streaming",
"http2",
"spdy",
"amazon",
"echo"
],
"author": "Dolan Miu",
"license": "MIT",
"dependencies": {
"@types/node": "^9.3.0",
"@types/ramda": "^0.25.15",
"@types/request-promise": "^4.1.39",
"@types/uuid": "^3.4.3",
"install": "^0.10.2",
"nan": "^2.8.0",
"npm": "^5.6.0",
"ramda": "^0.25.0",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"rxjs": "^5.5.6",
"uuid": "^3.2.1"
},
"devDependencies": {
"cspell": "^2.0.4",
"mic": "^2.1.2",
"node-record-lpcm16": "^0.3.0",
"rimraf": "^2.6.2",
"speaker": "^0.4.0",
"tslint": "^5.9.1",
"typescript": "^2.6.2"
}
}