forked from actions-on-google/actions-on-google-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.33 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
{
"name": "actions-on-google",
"description": "Actions on Google Client Library for Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"version": "2.7.0",
"license": "Apache-2.0",
"author": "Google Inc.",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"lint": "tslint -p .",
"clean": "rm -rf dist",
"clean:pack": "rm -f *.tgz",
"build": "tsc",
"build:watch": "tsc -w",
"build:clean": "yarn clean:pack && yarn clean && yarn build",
"package": "yarn build:clean && yarn 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 && yarn test",
"docs:redirect": "node script/redirect.js",
"docs:hide": "echo 'a[href=\"modules/conversation.html\"], a[href=\"conversation.html\"], a[href=\"../modules/conversation.html\"] { display: none !important; }' >> docs/assets/css/main.css",
"docs": "typedoc --options typedoc.json --theme node_modules/typedoc-neo-theme/bin/default && touch docs/.nojekyll && yarn docs:redirect && yarn docs:hide",
"docs:clean": "rm -rf docs && yarn docs",
"docs:serve": "yarn docs:clean && hs docs -o",
"coverage": "yarn coverage:serve",
"coverage:serve": "yarn test && hs coverage -o"
},
"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/sinon": "^4.3.3",
"ava": "^1.4.1",
"concurrently": "^3.5.1",
"http-server": "^0.11.1",
"nyc": "^14.0.0",
"sinon": "^6.0.0",
"tslint": "^5.9.1",
"tslint-eslint-rules": "^5.1.0",
"typedoc": "^0.14.2",
"typedoc-neo-theme": "^1.0.0",
"typedoc-plugin-external-module-map": "^0.1.0",
"typescript": "^3.2.0"
},
"dependencies": {
"@types/aws-lambda": "^0.0.33",
"@types/debug": "^0.0.30",
"@types/express": "^4.11.1",
"@types/node": "^9.4.6",
"debug": "^3.1.0",
"google-auth-library": "^1.3.2",
"googleapis": "^27.0.0"
}
}