This repository was archived by the owner on Feb 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.16 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.16 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
{
"name": "@assistant/conversation-testing",
"description": "This is an end-to-end testing library for developers building actions",
"version": "1.0.0",
"license": "Apache-2.0",
"author": "Google Inc.",
"directories": {
"lib": "./dist",
"src": "./src",
"test": "./src"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=10.13.0"
},
"scripts": {
"prepublish": "npm run compile",
"test": "mocha --recursive --require ts-node/register src/test/*.ts",
"compile": "tsc -p tsconfig.json",
"lint": "gts check",
"clean": "rm -rf dist docs && gts clean",
"build": "tsc && rm -fr ./dist/locales && cp -r ./locales ./dist",
"docs": "typedoc --options typedoc.json",
"docs:clean": "rm -rf docs && mkdir docs && touch docs/.nojekyll && yarn docs",
"check": "gts check",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions-on-google/assistant-conversation-testing-nodejs.git"
},
"bugs": {
"url": "https://github.com/actions-on-google/assistant-conversation-testing-nodejs/issues"
},
"homepage": "https://github.com/actions-on-google/assistant-conversation-testing-nodejs#readme",
"keywords": [
"google",
"google actions",
"google assistant",
"automated testing",
"continuous integration"
],
"bin": {
"web-and-app-activity-controls": "./bin/web-and-app-activity-controls.js"
},
"dependencies": {
"@assistant/actions": "0.1.0",
"@types/chai": "^4.1.4",
"@types/i18n": "^0.8.6",
"@types/js-yaml": "^3.12.5",
"@types/node": "^10.9.4",
"@types/promise.prototype.finally": "^2.0.3",
"chai": "^4.2.0",
"google-auth-library": "^6.1.2",
"grpc": "^1.24.0",
"i18n": "^0.8.3",
"js-yaml": "^3.14.0",
"promise.prototype.finally": "^3.1.1",
"ts-node": "^7.0.1"
},
"devDependencies": {
"@types/mocha": "^8.0.0",
"@types/winston": "^2.4.4",
"gts": "^3.0.2",
"mocha": "^8.0.1",
"typedoc": "^0.15.0",
"typescript": "^3.8.3",
"@types/node": "^13.11.1"
}
}