This repository has been archived by the owner on Mar 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 2.31 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
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@broid/kit-botpress",
"version": "0.1.0",
"main": "lib/core/index.js",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"author": "Broid Team <opensource@broid.ai> (https://broid.ai)",
"description": "Broid Kit Middleware for Botpress.",
"repository": {
"type": "git",
"url": "git@github.com:broidHQ/broid-kit-botpress.git"
},
"bugs": {
"url": "https://github.com/broidHQ/broid-kit-botpress/issues"
},
"homepage": "https://github.com/broidHQ/broid-kit-botpress",
"keywords": [
"kit",
"broid",
"botpress",
"activity",
"activity streams 2",
"messaging",
"chat",
"bot"
],
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"@broid/kit": "^0.0.1",
"@broid/slack": "^2.0.0",
"@broid/utils": "^1.1.0",
"bluebird": "^3.5.0",
"botpress": "^0.1.8",
"botpress-slack": "^1.0.21",
"botpress-version-manager": "^1.0.3",
"copyfiles": "^1.2.0",
"ramda": "^0.23.0",
"rxjs": "^5.3.0"
},
"devDependencies": {
"@types/bluebird": "^3.0.37",
"@types/bluebird-global": "^3.0.1",
"@types/node": "^7.0.13",
"@types/ramda": "0.0.3",
"ava": "^0.18.1",
"concurrently": "^3.1.0",
"copyfiles": "^1.2.0",
"nsp": "^2.6.3",
"nyc": "^10.1.2",
"sinon": "^1.17.7",
"tslint": "^4.3.1",
"tslint-eslint-rules": "^4.0.0",
"tslint-microsoft-contrib": "^4.0.1",
"typescript": "~2.2.2",
"watch": "^1.0.1"
},
"scripts": {
"build": "npm run clean && npm run copy && tsc",
"clean": "rm -rf lib",
"copy": "copyfiles -u 1 src/**/*.json lib/",
"lint": "tslint -c tslint.json src/**/*.ts",
"lint:watch": "watch 'npm run lint' src",
"nsp-check": "nsp check --warn-only -o summary",
"test": "npm run lint && npm run build && nyc ava --verbose",
"travis": "npm run nsp-check && npm run test",
"tsc:watch": "npm run build && tsc --watch",
"release": "npm run travis && npm run build && npm publish --access public",
"watch": "concurrently --kill-others \"npm run lint:watch\" \"npm run tsc:watch\""
},
"ava": {
"files": [
"lib/test/**/*.js"
],
"concurrency": 5,
"failFast": true,
"tap": true
},
"nyc": {
"exclude": [
"dist"
]
}
}