botium-actions-on-google-testing
Version:
This is an end-to-end testing library for developers building actions
70 lines (69 loc) • 2.48 kB
JSON
{
"name": "botium-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": "tsc && cp -r ./locales ./dist",
"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.4",
"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"
}
}