-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"name": "@vocalime/jovo-standard-events-plugin",
"version": "2.0.2",
"description": "Handle standard events outside your components.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"dependencies": {
"@jovotech/framework": "^4.4.3"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^27.3.1",
"prettier": "^2.2.1",
"ts-jest": "^27.0.7",
"typescript": "~4.4.0"
},
"scripts": {
"test": "jest",
"build": "tsc",
"lint": "eslint src --fix --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vocalime-base/jovo-standard-events-plugin.git"
},
"keywords": [
"jovo",
"plugin"
],
"author": "Vocalime",
"license": "MIT",
"bugs": {
"url": "https://github.com/vocalime-base/jovo-standard-events-plugin/issues"
},
"homepage": "https://github.com/vocalime-base/jovo-standard-events-plugin#readme",
"publishConfig": {
"access": "public"
}
}