UNPKG

2.26 kBJSONView Raw
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": "2.14.0",
7 "license": "Apache-2.0",
8 "author": "Google Inc.",
9 "engines": {
10 "node": ">=6.13.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 && 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": "^1.4.1",
53 "concurrently": "^3.5.1",
54 "gts": "^3.1.0",
55 "http-server": "^0.12.1",
56 "nyc": "^14.0.0",
57 "sinon": "^6.0.0",
58 "typedoc": "^0.15.0",
59 "typedoc-neo-theme": "^1.0.9",
60 "typescript": "^4.1.3"
61 },
62 "dependencies": {
63 "debug": "^3.1.0",
64 "google-auth-library": "^1.6.1",
65 "googleapis": "^39.2.0",
66 "@types/aws-lambda": "^0.0.33",
67 "@types/debug": "^0.0.30",
68 "@types/express": "~4.17.7"
69 },
70 "resolutions": {
71 "typedoc-default-themes": "0.6.0"
72 }
73}