-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
69 lines (69 loc) · 2.39 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "actions-on-google-testing",
"description": "This is an end-to-end testing library for developers building actions",
"version": "0.4.0",
"license": "Apache-2.0",
"author": "Google Inc.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=10.13.0"
},
"scripts": {
"clean": "rm -rf dist docs",
"lint": "tslint -p .",
"build": "tsc && cp -r ./locales ./dist",
"test": "yarn clean && yarn build && yarn lint && nyc ava --fail-fast dist/test/test.js",
"test:git": "sh script/git-presubmit-lint.sh",
"test:tar": "bash script/package-contents.sh",
"test:ci": "yarn test && yarn test:git && yarn test:tar",
"docs": "typedoc --options typedoc.json",
"docs:clean": "rm -rf docs && mkdir docs && touch docs/.nojekyll && yarn docs",
"prepare": "yarn build",
"release": "yarn clean && yarn lint && yarn build && yarn publish && yarn release:changelog",
"release:changelog": "sh script/changelog.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions-on-google/actions-on-google-testing-nodejs.git"
},
"bugs": {
"url": "https://github.com/actions-on-google/actions-on-google-testing-nodejs/issues"
},
"homepage": "https://github.com/actions-on-google/actions-on-google-testing-nodejs#readme",
"keywords": [
"google",
"google actions",
"google assistant",
"automated testing",
"continuous integration"
],
"dependencies": {
"@types/i18n": "^0.8.6",
"@types/promise.prototype.finally": "^2.0.3",
"ava": "^2.4.0",
"google-auth-library": "^5.5.0",
"google-proto-files": "^1.1.0",
"google-protobuf": "^3.10.0",
"googleapis": "^44.0.0",
"grpc": "^1.24.0",
"i18n": "^0.8.3",
"promise.prototype.finally": "^3.1.1"
},
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/node": "^12.7.11",
"@types/sinon": "^7.5.0",
"@types/winston": "^2.4.4",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"mocha": "^6.2.1",
"nyc": "^14.1.1",
"sinon": "^7.5.0",
"tslint": "^5.20.0",
"tslint-eslint-rules": "^5.4.0",
"typedoc": "^0.15.0",
"typescript": "^3.6.3",
"winston": "^3.2.1"
}
}