1 | {
|
2 | "name": "actions-on-google",
|
3 | "description": "Actions on Google Client Library for Node.js",
|
4 | "main": "dist/index.js",
|
5 | "types": "dist/index.d.ts",
|
6 | "version": "3.0.0",
|
7 | "license": "Apache-2.0",
|
8 | "author": "Google Inc.",
|
9 | "engines": {
|
10 | "node": ">=12.17.0"
|
11 | },
|
12 | "scripts": {
|
13 | "lint": "gts lint",
|
14 | "clean": "gts clean",
|
15 | "clean:pack": "rm -f *.tgz",
|
16 | "build": "tsc",
|
17 | "build:watch": "tsc -w",
|
18 | "build:clean": "yarn clean:pack && yarn clean && yarn build",
|
19 | "package": "yarn build:clean && npm pack",
|
20 | "test": "yarn build:clean && yarn lint && nyc ava --fail-fast",
|
21 | "test:watch": "yarn build:clean && concurrently -rk \"yarn build:watch\" \"ava -w --fail-fast\"",
|
22 | "test:ci": "yarn audit && script/ci.sh",
|
23 | "docs": "typedoc --options typedoc.json --theme node_modules/typedoc-neo-theme/bin/default src/ && touch docs/.nojekyll",
|
24 | "docs:clean": "rm -rf docs && yarn docs",
|
25 | "docs:serve": "yarn docs:clean && hs docs -o",
|
26 | "docs:deploy": "script/docs.sh",
|
27 | "coverage": "yarn coverage:serve",
|
28 | "coverage:serve": "yarn test && hs coverage -o",
|
29 | "compile": "tsc",
|
30 | "fix": "gts fix",
|
31 | "prepare": "npm run compile",
|
32 | "pretest": "npm run compile",
|
33 | "posttest": "npm run lint"
|
34 | },
|
35 | "repository": {
|
36 | "type": "git",
|
37 | "url": "git+https://github.com/actions-on-google/actions-on-google-nodejs.git"
|
38 | },
|
39 | "bugs": {
|
40 | "url": "https://github.com/actions-on-google/actions-on-google-nodejs/issues"
|
41 | },
|
42 | "homepage": "https://github.com/actions-on-google/actions-on-google-nodejs#readme",
|
43 | "keywords": [
|
44 | "google",
|
45 | "google actions",
|
46 | "google assistant",
|
47 | "client library"
|
48 | ],
|
49 | "devDependencies": {
|
50 | "@types/node": "^14.11.2",
|
51 | "@types/sinon": "^4.3.3",
|
52 | "ava": "^3.15.0",
|
53 | "concurrently": "^6.2.0",
|
54 | "gts": "^3.1.0",
|
55 | "http-server": "^0.12.3",
|
56 | "nyc": "^15.1.0",
|
57 | "sinon": "^6.0.0",
|
58 | "typedoc": "^0.20.0",
|
59 | "typedoc-neo-theme": "^1.1.0",
|
60 | "typescript": "~4.2.0"
|
61 | },
|
62 | "dependencies": {
|
63 | "debug": "^4.3.0",
|
64 | "google-auth-library": "^7.2.0",
|
65 | "googleapis": "^80.0.0",
|
66 | "@types/aws-lambda": "^8.10.0",
|
67 | "@types/debug": "^4.1.6",
|
68 | "@types/express": "~4.17.9",
|
69 | "@types/express-serve-static-core": "4.17.19",
|
70 | "@types/serve-static": "1.13.9"
|
71 | },
|
72 | "resolutions": {
|
73 | "typedoc-default-themes": "0.6.0"
|
74 | }
|
75 | }
|