-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.74 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
{
"name": "kobebot",
"description": "Chat with man's best friend",
"version": "1.0.0",
"private": true,
"homepage": "https://github.com/suddi/kobebot",
"author": {
"name": "Sudharshan Ravindran",
"email": "mail@suddi.io",
"url": "https://suddi.io"
},
"repository": {
"type": "git",
"url": "https://github.com/suddi/kobebot"
},
"bugs": {
"url": "https://github.com/suddi/kobebot/issues"
},
"files": [
"src"
],
"main": "src/app.ts",
"license": "Apache-2.0",
"keywords": [],
"engines": {
"node": ">= 6.0.0",
"npm": ">= 4.0.0"
},
"scripts": {
"compile": "tsc",
"cost-of-modules": "cost-of-modules --no-install",
"coverage": "nyc _mocha --opts src/test/mocha.opts",
"lint": "tslint --config ./tslint.json src/*.ts src/**/*.ts",
"prepush": "npm test",
"heroku-postbuild": ". ./bin/postbuild.sh",
"security-check": "nsp check --output summary",
"start": "node lib/app.js",
"server": "ts-node --project tsconfig.json src/app.ts | bunyan --output short",
"test": "npm run lint && npm run security-check && npm run coverage && npm run compile"
},
"dependencies": {
"botbuilder": "^3.0.0",
"bunyan": "^1.0.0",
"lodash": "^4.0.0",
"restify": "^6.0.0",
"talkify": "^2.0.0"
},
"devDependencies": {
"@types/bunyan": "^1.0.0",
"@types/chai": "^4.0.0",
"@types/lodash": "^4.0.0",
"@types/mocha": "^2.0.0",
"@types/restify": "^5.0.0",
"chai": "^4.0.0",
"cost-of-modules": "^1.0.0",
"husky": "^0.14.0",
"mocha": "^4.0.0",
"nsp": "^2.0.0",
"nyc": "^11.0.0",
"source-map-support": "^0.5.0",
"ts-node": "^3.0.0",
"tslint": "^5.0.0",
"tslint-eslint-rules": "^4.0.0",
"typescript": "^2.0.0"
}
}