This repository has been archived by the owner on May 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 193
/
package.json
75 lines (75 loc) · 2.29 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
70
71
72
73
74
75
{
"name": "actions-on-google",
"description": "Actions on Google Client Library for Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"version": "3.0.0",
"license": "Apache-2.0",
"author": "Google Inc.",
"engines": {
"node": ">=12.17.0"
},
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"clean:pack": "rm -f *.tgz",
"build": "tsc",
"build:watch": "tsc -w",
"build:clean": "yarn clean:pack && yarn clean && yarn build",
"package": "yarn build:clean && npm pack",
"test": "yarn build:clean && yarn lint && nyc ava --fail-fast",
"test:watch": "yarn build:clean && concurrently -rk \"yarn build:watch\" \"ava -w --fail-fast\"",
"test:ci": "yarn audit && script/ci.sh",
"docs": "typedoc --options typedoc.json --theme node_modules/typedoc-neo-theme/bin/default src/ && touch docs/.nojekyll",
"docs:clean": "rm -rf docs && yarn docs",
"docs:serve": "yarn docs:clean && hs docs -o",
"docs:deploy": "script/docs.sh",
"coverage": "yarn coverage:serve",
"coverage:serve": "yarn test && hs coverage -o",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions-on-google/actions-on-google-nodejs.git"
},
"bugs": {
"url": "https://github.com/actions-on-google/actions-on-google-nodejs/issues"
},
"homepage": "https://github.com/actions-on-google/actions-on-google-nodejs#readme",
"keywords": [
"google",
"google actions",
"google assistant",
"client library"
],
"devDependencies": {
"@types/node": "^14.11.2",
"@types/sinon": "^4.3.3",
"ava": "^3.15.0",
"concurrently": "^6.2.0",
"gts": "^3.1.0",
"http-server": "^0.12.3",
"nyc": "^15.1.0",
"sinon": "^6.0.0",
"typedoc": "^0.20.0",
"typedoc-neo-theme": "^1.1.0",
"typescript": "~4.2.0"
},
"dependencies": {
"debug": "^4.3.0",
"google-auth-library": "^7.2.0",
"googleapis": "^80.0.0",
"@types/aws-lambda": "^8.10.0",
"@types/debug": "^4.1.6",
"@types/express": "~4.17.9",
"@types/express-serve-static-core": "4.17.19",
"@types/serve-static": "1.13.9"
},
"resolutions": {
"typedoc-default-themes": "0.6.0"
}
}