-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.42 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
{
"name": "@jbernavaprah/jovo-platform-vonage",
"version": "0.2.5",
"description": "An unofficial integration of Vonage to Jovo",
"main": "dist/cjs/index.js",
"module": "dist/esm5/index.js",
"es2015": "dist/esm2015/index.js",
"types": "dist/types/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"sample-requests"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -b tsconfig.build.cjs.json tsconfig.build.esm5.json tsconfig.build.esm2015.json tsconfig.build.types.json",
"watch": "tsc -b tsconfig.build.cjs.json tsconfig.build.esm5.json tsconfig.build.esm2015.json tsconfig.build.types.json --watch",
"prettier": "prettier -w -l src test package.json",
"eslint": "eslint src test --fix --ext .ts",
"rimraf": "rimraf dist",
"test": "jest --runInBand",
"release:major": "npm version $(semver $npm_package_version -i major) && npm publish --tag latest ",
"release:minor": "npm version $(semver $npm_package_version -i minor) && npm publish --tag latest ",
"release:patch": "npm version $(semver $npm_package_version -i patch) && npm publish --tag latest "
},
"author": "Jure Bernava Prah",
"license": "Apache-2.0",
"dependencies": {
"class-transformer": "^0.5.1",
"js-sha256": "^0.9.0",
"jsonwebtoken": "^9.0.0",
"libphonenumber-js": "^1.10.37",
"lodash.merge": "^4.6.2"
},
"devDependencies": {
"@jovotech/cli-core": "^4.1.9",
"@jovotech/framework": "^4.5.10",
"@jovotech/output": "^4.5.10",
"@jovotech/plugin-keywordnlu": "^4.5.10",
"@jovotech/server-express": "^4.5.10",
"@types/express": "^4.17.17",
"@types/jest": "^26.0.20",
"@types/jsonwebtoken": "^9.0.2",
"@types/lodash.clonedeep": "^4.5.7",
"@types/lodash.merge": "^4.6.6",
"@types/node": "^12.20.37",
"@types/uuid": "^9.0.2",
"@types/which": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"esbuild": "^0.13.8",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^29.2.1",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"semver": "^7.3.7",
"ts-jest": "^29.0.4",
"typescript": "~4.4.4"
},
"peerDependencies": {
"@jovotech/framework": "4.5",
"@jovotech/output": "4.5",
"@jovotech/server-express": "4.5"
},
"prettier": "./.prettierrc.js",
"publishConfig": {
"access": "public"
}
}