-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 876 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 876 Bytes
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
{
"name": "botbuilder-command-line",
"version": "1.0.1-beta.11",
"main": "lib/index.js",
"types": "lib/library.d.ts",
"license": "MIT",
"author": "Martin Fernandez <fmartin91@gmail.com>",
"scripts": {
"test": "node_modules/.bin/jest --config jest.json --forceExit",
"build": "yarn lint && yarn build-ts",
"build-ts": "tsc",
"watch": "tsc --watch",
"lint": "tslint 'src/**/*.ts'",
"lint:fix": "tslint 'src/**/*.ts' --fix",
"ci": "yarn build && yarn test",
"prepublish": "yarn build"
},
"dependencies": {
"botbuilder": "^3.9.0",
"minimist": "^1.2.0"
},
"devDependencies": {
"@types/jest": "22.1.0",
"@types/node": "8.9.4",
"@types/minimist": "1.2.0",
"jest": "22.1.4",
"bot-tester": "3.4.2",
"ts-jest": "22.0.2",
"ts-node": "4.1.0",
"tslint": "5.9.1",
"typescript": "2.7.2"
}
}