-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.78 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "jovo-plugin-resume",
"version": "0.1.0",
"description": "A plugin that makes continuing conversations across sessions easy",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"contributors": [
"Jeffrey Smith <jsmith6690@gmail.com> (http://jeffreysmith.ninja)",
"Zach Morgan <zmorg98@gmail.com>"
],
"files": [
"dist"
],
"scripts": {
"prettier": "prettier --config ./.prettierrc.js --write \"{test,src}/**/*\" --list-different --ignore example",
"rimraf": "rimraf ./dist",
"typedoc": "typedoc --out ./docs ./ --mode file",
"build": "tsc",
"watch": "npm run tscw",
"test": "echo \"skipping tests\"",
"tscw": "tsc --watch",
"lint": "run-s lint.*",
"lint.js": "eslint './src/**/*.{js,ts}'"
},
"dependencies": {
"jovo-core": "^3.0.9",
"jovo-db-filedb": "^3.0.9",
"jovo-framework": "^3.0.9",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-json": "^4.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"@types/express": "^4.16.1",
"@types/jest": "^23.3.5",
"@types/lodash": "^4.14.149",
"@types/lodash.get": "^4.4.6",
"@types/lodash.set": "^4.3.6",
"@types/node": "^13.1.6",
"@types/socket.io-client": "^1.4.32",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-detailed-reporter": "^0.8.0",
"eslint-plugin-prettier": "^3.1.2",
"gulp": "^4.0.0",
"gulp-install": "^1.1.0",
"gulp-run-command": "0.0.9",
"gulp-zip": "^4.2.0",
"husky": "^4.2.3",
"jest": "^23.6.0",
"lint-staged": "^9.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"rollup": "^1.29.0",
"source-map-support": "^0.5.16",
"ts-jest": "^23.10.4",
"typedoc": "^0.17.3",
"typescript": "^3.7.4"
},
"jest": {
"testURL": "http://localhost/",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"/dist/",
"/node_modules/"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"globals": {
"ts-jest": {
"diagnostics": true
}
}
},
"husky": {
"hooks": {
"pre-commit": "tsc --noEmit && lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jovotech/jovo-sample-voice-app-nodejs.git"
},
"author": "Jovo",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jovotech/jovo-sample-voice-app-nodejs/issues"
},
"homepage": "https://github.com/jovotech/jovo-sample-voice-app-nodejs#readme"
}