forked from aiden/autobot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "autobot",
"version": "0.0.1",
"description": "Multi-platform bit testing framework",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"clean": "rm -rf dist",
"test": "mocha --harmony --require source-map-support/register dist/test --recursive"
},
"bin": {
"autobot": "dist/cli.js"
},
"repository": {
"type": "git",
"url": "git://[email protected]/aiden/e2e-tests.git"
},
"author": "aiden.ai",
"license": "UNLICENSED",
"dependencies": {
"botframework-directlinejs": "^0.9.11",
"chalk": "^2.1.0",
"commander": "^2.11.0",
"find-parent-dir": "^0.3.0",
"glob": "^7.1.2",
"js-yaml": "^3.9.1",
"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"
}
}