-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.46 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
{
"name": "botyo",
"version": "2.0.1",
"description": "Botyo Runtime Components",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"prebuild": "rimraf build/",
"build": "tsc -p .",
"docs": "typedoc --out docs/ --mode file --name \"Botyo Documentation\" --gaID UA-38096478-9 --excludeNotExported --excludePrivate",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivkos/botyo.git"
},
"author": {
"name": "Ivaylo Stoyanov",
"email": "[email protected]",
"url": "https://github.com/ivkos"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ivkos/botyo/issues"
},
"homepage": "https://github.com/ivkos/botyo#readme",
"dependencies": {
"bluebird": "^3.5.1",
"botyo-api": "^2.0.1",
"facebook-chat-api": "github:ivkos/facebook-chat-api#botyo",
"inversify": "^4.9.0",
"js-yaml": "^3.10.0",
"lodash": "^4.17.4",
"node-schedule": "^1.2.5",
"reflect-metadata": "^0.1.10",
"source-map-support": "^0.5.0",
"string-similarity": "^1.2.0",
"winston": "^2.4.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.19",
"@types/js-yaml": "^3.10.1",
"@types/lodash": "^4.14.91",
"@types/node-schedule": "^1.2.1",
"@types/string-similarity": "^1.2.0",
"@types/winston": "^2.3.7",
"rimraf": "^2.6.2",
"typedoc": "^0.11.1",
"typescript": "^2.6.1"
},
"engines": {
"node": ">=8.3.0"
}
}