-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
69 lines (69 loc) · 1.87 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
{
"name": "nodejs-assistant",
"description": "Google Assistant SDK for Node.js",
"version": "0.8.0",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"author": "Giorgio Garasto <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rm -rf lib && rollup -c rollup.config.ts",
"test": "jest",
"lint": "eslint --ext .ts --ext .js 'src/**/*.ts'",
"format": "npm run lint -- --fix",
"generate-docs": "typedoc src --out api --mode file --name 'Assistant SDK for Node.js' --theme markdown --hideSources",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@grpc/proto-loader": "^0.5.3",
"google-auth-library": "^5.10.0",
"google-proto-files": "^1.1.2",
"grpc": "^1.24.2"
},
"devDependencies": {
"@types/jest": "^25.1.3",
"@types/node": "^13.7.4",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"rollup": "^1.31.1",
"rollup-plugin-typescript2": "^0.26.0",
"ts-jest": "^25.2.1",
"typedoc": "^0.16.10",
"typedoc-plugin-markdown": "^2.2.16",
"typescript": "^3.8.2"
},
"repository": "Dabolus/nodejs-assistant",
"contributors": [
"Giorgio Garasto <[email protected]>"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"transformIgnorePatterns": [
"/node_modules/"
],
"collectCoverage": true,
"collectCoverageFrom": [
"<rootDir>/src/**/*.ts",
"!<rootDir>/src/**/*.d.ts"
],
"coverageDirectory": "<rootDir>/coverage",
"testMatch": [
"<rootDir>/test/**/*.spec.ts"
]
}
}