forked from yoichiro/actions-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.98 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.98 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "actions-tools",
"version": "0.8.0",
"description": "This provides some useful tools to build your actions for Google Assistant.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": {
"name": "Yoichiro Tanaka",
"email": "yoichiro6642@gmail.com",
"url": "https://github.com/yoichiro)"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/yoichiro/actions-tools.git"
},
"bugs": {
"url": "https://github.com/yoichiro/actions-tools/issues",
"email": "yoichiro6642@gmail.com"
},
"homepage": "https://github.com/yoichiro/actions-tools.git",
"keywords": [
"cli",
"terminal",
"console",
"google assistant",
"actions on google"
],
"bin": {
"actions-tools": "./dist/main.js"
},
"scripts": {
"clean": "rm -rf dist",
"lint": "tslint -p .",
"build": "yarn lint && tsc",
"test": "yarn clean && yarn build && nyc ava dist/_test/*.test.js",
"release": "yarn test && yarn publish"
},
"devDependencies": {
"@types/sinon": "^5.0.5",
"@types/yargs": "^12.0.1",
"ava": "^0.25.0",
"nyc": "^13.1.0",
"sinon": "^7.0.0",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.1.3"
},
"dependencies": {
"@grpc/proto-loader": "^0.3.0",
"@types/js-yaml": "^3.11.2",
"@types/make-dir": "^1.0.3",
"@types/node-emoji": "^1.8.0",
"@types/ora": "^1.3.4",
"@types/protobufjs": "^6.0.0",
"@types/stringify-object": "^3.2.0",
"@types/text-encoding": "^0.0.34",
"chalk": "^2.4.1",
"google-auth-library": "^2.0.0",
"google-proto-files": "^0.17.0",
"google-protobuf": "^3.6.1",
"googleapis": "^34.0.0",
"grpc": "^1.15.1",
"js-yaml": "^3.12.0",
"make-dir": "^1.3.0",
"mocha": "^5.2.0",
"node-emoji": "^1.8.1",
"opn": "^5.4.0",
"ora": "^3.0.0",
"play-sound": "^1.1.2",
"stringify-object": "^3.3.0",
"text-encoding": "^0.7.0",
"yargs": "^12.0.2"
}
}