-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.19 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
72
73
74
75
76
77
78
79
{
"name": "@telefonica/bot-core",
"version": "1.28.0",
"description": "Bot Core package to run bots",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"scripts-info": {
"info": "List available scripts",
"build": "Builds the plugin, by cleaning and compiling TypesScript into Javascript",
"compile": "Just compiles your code",
"dev": "Watch codebase, trigger compile when source code changes",
"lint": "Check coding guidelines conformance",
"security": "Check if your dependencies are secure",
"test": "Test your codebase"
},
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "shx rm -fR ./lib",
"compile": "tsc",
"dev": "npm run watch",
"info": "npm-scripts-info",
"lint": "tslint './src/**/*.ts'",
"prepublish": "npm run build",
"security": "nsp check",
"test": "npm run build && mocha -R spec 'lib/**/*.spec.js'",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "https://github.com/Telefonica/yot-bot/tree/master/packages/bot-core"
},
"keywords": [
"bot",
"fourth platform"
],
"author": "TDAF <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@slack/client": "^3.6.0",
"@telefonica/object-storage": "^3.0.1",
"alfalfa": "^2.2.0",
"bingspeech-api-client": "^2.0.0",
"botbuilder": "3.4.4",
"express": "^4.14.0",
"express-domaining": "^2.0.1",
"express-tracking": "^1.0.1",
"logops": "^1.0.6",
"request": "^2.75.0",
"streamifier": "^0.1.1",
"therror": "^2.1.0",
"therror-connect": "^1.0.2",
"uuid": "^3.0.1"
},
"devDependencies": {
"@types/chai": "^3.4.33",
"@types/express": "^4.0.0",
"@types/mocha": "^2.2.32",
"@types/nock": "^8.0.33",
"@types/node": "^6.0.40",
"@types/request": "0.0.31",
"@types/sinon": "^1.16.30",
"@types/sinon-chai": "^2.7.27",
"@types/uuid": "^2.0.29",
"chai": "^3.5.0",
"mocha": "^3.0.2",
"nock": "^8.0.0",
"nodemon": "^1.10.2",
"npm-scripts-info": "^0.3.6",
"nsp": "^2.6.1",
"shx": "^0.1.4",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"tslint": "^3.15.1",
"typescript": "2.0.10"
}
}