-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.08 KB
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
{
"name": "botframework",
"version": "0.17.0",
"description": "Framework for messaging bots",
"main": "./dist/es5/src/bot.js",
"typings": "./dist/es5/src/interfaces.d.ts",
"scripts": {
"prepublish": "typings install && npm run-script build",
"pretest": "npm run-script build",
"test": "mocha dist/es5/tests",
"build": "tsc -p ./",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/amitevski/botframework.git"
},
"keywords": [
"nodejs",
"typescript",
"bot",
"messaging"
],
"author": "Aco Mitevski",
"license": "MIT",
"bugs": {
"url": "https://github.com/amitevski/botframework/issues"
},
"homepage": "https://github.com/amitevski/botframework#readme",
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5",
"sinon": "^1.17.4",
"typescript": "^1.8.10",
"typings": "^0.8.1",
"semantic-release": "^4.3.5"
},
"dependencies": {
"bluebird": "^3.3.5",
"hapi": "^13.4.0",
"request": "^2.72.0"
}
}