forked from aiden/autobot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.34 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": "auto-bot",
"version": "0.0.13",
"description": "Multi-platform bit testing framework",
"scripts": {
"build": "tsc",
"lint": "tslint -p tsconfig.json",
"watch": "tsc -w",
"clean": "rm -rf dist",
"test": "mocha --harmony --require source-map-support/register dist/test --recursive",
"prepare": "npm run clean && npm run build && npm run test"
},
"bin": {
"autobot": "dist/cli.js",
"auto-bot": "dist/cli.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git://git@github.com/aiden/e2e-tests.git"
},
"author": "aiden.ai",
"license": "UNLICENSED",
"dependencies": {
"botframework-directlinejs": "^0.9.11",
"chalk": "2.1",
"commander": "^2.11.0",
"find-parent-dir": "^0.3.0",
"glob": "^7.1.2",
"js-yaml": "^3.9.1",
"node-progress-bars": "^1.0.8",
"semver": "^5.4.1",
"source-map-support": "^0.4.17",
"xhr2": "^0.1.4"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/js-yaml": "^3.9.1",
"@types/mocha": "^2.2.42",
"@types/node": "^8.0.26",
"chai": "^4.1.1",
"eslint": "^3.19.0",
"mocha": "^3.5.0",
"source-map-loader": "^0.1.5",
"ts-loader": "^1.3.3",
"tslint-config-airbnb": "^5.3.0",
"typescript": "^2.3.2"
},
"bugs": {
"url": "https://github.com/aiden/autobot/issues"
}
}