├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── action.json ├── firebase.json └── functions ├── .eslintrc.json ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actionssdk-say-number-nodejs/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actionssdk-say-number-nodejs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actionssdk-say-number-nodejs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actionssdk-say-number-nodejs/HEAD/README.md -------------------------------------------------------------------------------- /action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actionssdk-say-number-nodejs/HEAD/action.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /functions/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actionssdk-say-number-nodejs/HEAD/functions/.eslintrc.json -------------------------------------------------------------------------------- /functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actionssdk-say-number-nodejs/HEAD/functions/index.js -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/actionssdk-say-number-nodejs/HEAD/functions/package.json --------------------------------------------------------------------------------