forked from shafiahmed/google-assistant-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.27 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
{
"name": "google-assistant-node",
"version": "0.0.15",
"description": "Google Assistant SDK wrapper for Node",
"main": "./lib/google-assistant.js",
"types": "./lib/google-assistant.d.ts",
"scripts": {
"clean": "gulp clean",
"build": "npm run copy-googleapis && tsc",
"build:test": "gulp",
"build:live": "gulp watch",
"test": "npm run build:test && mocha build/test",
"copy-googleapis": "mkdir -p lib && cp -r googleapis lib/",
"prepublish": "npm run build"
},
"keywords": [
"google-assistant",
"embedded-google-assistant",
"grpc",
"googleapi",
"google-sdk"
],
"author": "Alan Wernick",
"license": "ISC",
"dependencies": {
"google-protobuf": "^3.3.0",
"grpc": "~1.3.8"
},
"devDependencies": {
"@types/chai": "^4.0.0",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.29",
"chai": "^4.0.2",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-typescript": "^3.1.7",
"mocha": "^3.4.2",
"typescript": "^2.3.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/awernick/google-assistant-node.git"
},
"bugs": {
"url": "https://github.com/awernick/google-assistant-node/issues"
},
"homepage": "https://github.com/awernick/google-assistant-node#readme"
}