2018-08-08 21:58:19 +03:00
|
|
|
{
|
|
|
|
"name": "botbuilder-tools",
|
|
|
|
"scripts": {
|
2018-08-15 19:19:37 +03:00
|
|
|
"build": "lerna bootstrap && lerna run build",
|
2018-09-12 22:50:49 +03:00
|
|
|
"test": "lerna run test",
|
2018-09-06 19:30:09 +03:00
|
|
|
"coverage": "nyc npm test",
|
2019-05-18 01:33:04 +03:00
|
|
|
"coveralls": "npm run coverage",
|
|
|
|
"upload-coveralls": "nyc report --reporter=text-lcov | coveralls",
|
2019-04-20 20:16:52 +03:00
|
|
|
"eslint": "eslint --format \"node_modules/eslint-friendly-formatter\" \"./packages/@(LUIS|LUISGen|QnAMaker)/bin/*\"",
|
2018-08-17 06:42:37 +03:00
|
|
|
"tslint": "tslint ./packages/*/src/**/*.ts -t verbose"
|
2018-08-08 21:58:19 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-08-15 19:19:37 +03:00
|
|
|
"chai": "^4.1.2",
|
2018-08-15 17:13:00 +03:00
|
|
|
"coveralls": "^3.0.2",
|
2018-09-18 00:03:54 +03:00
|
|
|
"dotnet-2.0.0": "^1.4.4",
|
2018-09-18 00:19:12 +03:00
|
|
|
"dotnet-2.1": "^2.1.0",
|
2018-08-08 21:58:19 +03:00
|
|
|
"eslint": "^5.2.0",
|
|
|
|
"eslint-config-standard": "^11.0.0",
|
2018-08-08 22:05:14 +03:00
|
|
|
"eslint-friendly-formatter": "^4.0.1",
|
2018-08-08 21:58:19 +03:00
|
|
|
"eslint-plugin-import": "^2.13.0",
|
|
|
|
"eslint-plugin-node": "^7.0.1",
|
|
|
|
"eslint-plugin-promise": "^3.8.0",
|
2018-08-09 00:59:35 +03:00
|
|
|
"eslint-plugin-standard": "^3.1.0",
|
2018-08-30 16:02:53 +03:00
|
|
|
"lerna": "^3.2.1",
|
2018-08-01 14:54:22 +03:00
|
|
|
"mocha": "^5.2.0",
|
2018-08-15 19:19:37 +03:00
|
|
|
"nyc": "^12.0.2",
|
2018-09-12 00:24:41 +03:00
|
|
|
"targz": "^1.0.1",
|
2018-08-15 19:19:37 +03:00
|
|
|
"ts-loader": "^2.3.7",
|
2018-08-17 06:42:37 +03:00
|
|
|
"tslint": "^5.11.0",
|
|
|
|
"tslint-microsoft-contrib": "^5.2.0",
|
2018-10-31 23:52:36 +03:00
|
|
|
"typescript": "^3.1.1",
|
2018-08-17 06:42:37 +03:00
|
|
|
"uglify-es": "^3.1.0",
|
|
|
|
"webpack": "^3.6.0"
|
2018-08-08 22:18:32 +03:00
|
|
|
},
|
2018-08-10 02:05:50 +03:00
|
|
|
"nyc": {
|
|
|
|
"exclude": [
|
|
|
|
"**/test/*"
|
|
|
|
]
|
|
|
|
},
|
2018-08-08 22:18:32 +03:00
|
|
|
"eslintConfig": {
|
|
|
|
"env": {
|
2018-08-08 20:41:12 +03:00
|
|
|
"node": true,
|
2018-08-08 21:16:45 +03:00
|
|
|
"es6": true,
|
|
|
|
"mocha": true
|
2018-08-08 22:18:32 +03:00
|
|
|
},
|
|
|
|
"extends": "eslint:recommended",
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": 2017
|
|
|
|
},
|
|
|
|
"rules": {
|
2018-09-12 20:58:57 +03:00
|
|
|
"indent": "off",
|
2018-10-31 23:52:36 +03:00
|
|
|
"linebreak-style": "off",
|
2018-08-08 22:18:32 +03:00
|
|
|
"no-unused-vars": [
|
|
|
|
"warn"
|
|
|
|
],
|
|
|
|
"no-undef": [
|
|
|
|
"warn"
|
|
|
|
],
|
|
|
|
"no-console": [
|
|
|
|
"warn"
|
|
|
|
],
|
|
|
|
"no-case-declarations": [
|
|
|
|
"warn"
|
|
|
|
],
|
|
|
|
"no-extra-semi": [
|
|
|
|
"warn"
|
|
|
|
],
|
|
|
|
"no-unreachable": [
|
|
|
|
"warn"
|
|
|
|
],
|
|
|
|
"no-redeclare": [
|
|
|
|
"warn"
|
|
|
|
],
|
|
|
|
"no-useless-escape": [
|
|
|
|
"warn"
|
|
|
|
],
|
|
|
|
"no-constant-condition": [
|
|
|
|
"warn"
|
|
|
|
]
|
|
|
|
}
|
2018-08-08 21:58:19 +03:00
|
|
|
}
|
2018-08-10 02:05:50 +03:00
|
|
|
}
|