Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modularize scripts #925

Merged
merged 6 commits into from
May 14, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
96 changes: 49 additions & 47 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,49 +1,51 @@
{
"private": true,
"name": "botbuilder-packages",
"scripts": {
"postinstall": "lerna bootstrap --hoist",
"build": "lerna run build",
"clean": "lerna run clean",
"test": "lerna run build && nyc mocha \"libraries/bot*/tests/*.test.js\"",
"test:coveralls": "lerna run build && nyc mocha \"libraries/bot*/tests/*.test.js\" && nyc report --reporter=text-lcov | coveralls",
"build-docs": "lerna run build-docs",
"eslint": "./node_modules/.bin/eslint ./libraries/*/src/*.ts ./libraries/*/src/**/*.ts",
"eslint-fix": "./node_modules/.bin/eslint ./libraries/*/src/*.ts ./libraries/*/src/**/*.ts --fix",
"set-dependency-versions": "node tools/util/updateDependenciesInPackageJsons.js ./libraries ^${Version} botbuilder botbuilder-choices botbuilder-core botbuilder-prompts botframework-connector botframework-config botframework-schema && node tools/util/updateDependenciesInPackageJsons.js ./transcripts ^${Version} botbuilder botbuilder-ai botbuilder-dialogs",
"update-versions": "lerna run set-version && npm run set-dependency-versions"
},
"dependencies": {
"ms-rest-azure": "^2.5.9",
"ms-rest-js": "^1.0.1",
"read-text-file": "^1.1.0",
"replace-in-file": "^3.4.2",
"sinon": "^6.3.4",
"typedoc": "^0.12.0",
"typedoc-plugin-external-module-name": "^1.1.3",
"typedoc-plugin-markdown": "^1.1.15",
"typescript": "^3.1.1"
},
"devDependencies": {
"@types/jsonwebtoken": "7.2.8",
"@types/lodash": "^4.14.116",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"coveralls": "^3.0.2",
"eslint": "^5.15.1",
"eslint-plugin-only-warn": "^1.0.1",
"lerna": "^3.2.1",
"mocha": "^5.2.0",
"tslint-microsoft-contrib": "^5.2.1",
"typescript": "^2.7.2"
},
"nyc": {
"exclude": [
"**/botframework*/**/generated/**",
"**/botframework-luis/**",
"**/tests/**",
"**/tools/**",
"**/internal.*"
]
}
"private": true,
"name": "botbuilder-packages",
"scripts": {
"postinstall": "lerna bootstrap --hoist",
"build": "lerna run build",
"test": "lerna run build && nyc mocha \"libraries/bot*/tests/*.test.js\"",
"clean": "lerna run clean",
"test:coveralls": "lerna run build && nyc mocha \"libraries/bot*/tests/*.test.js\" && nyc report --reporter=text-lcov | coveralls",
"test-coverage": "nyc mocha \"libraries/bot*/tests/*.test.js\" ",
"upload-coverage": "nyc report --reporter=text-lcov | coveralls",
"build-docs": "lerna run build-docs",
"eslint": "eslint ./libraries/*/src/*.ts ./libraries/*/src/**/*.ts",
"eslint-fix": "eslint ./libraries/*/src/*.ts ./libraries/*/src/**/*.ts --fix",
"set-dependency-versions": "node tools/util/updateDependenciesInPackageJsons.js ./libraries ^${Version} botbuilder botbuilder-choices botbuilder-core botbuilder-prompts botframework-connector botframework-config botframework-schema && node tools/util/updateDependenciesInPackageJsons.js ./transcripts ^${Version} botbuilder botbuilder-ai botbuilder-dialogs",
"update-versions": "lerna run set-version && npm run set-dependency-versions"
},
"dependencies": {
"ms-rest-azure": "^2.5.9",
BruceHaley marked this conversation as resolved.
Show resolved Hide resolved
"ms-rest-js": "^1.0.1",
"read-text-file": "^1.1.0",
"replace-in-file": "^3.4.2",
"sinon": "^6.3.4",
"typedoc": "^0.12.0",
"typedoc-plugin-external-module-name": "^1.1.3",
"typedoc-plugin-markdown": "^1.1.15",
"typescript": "^3.1.1"
},
"devDependencies": {
"@types/jsonwebtoken": "7.2.8",
"@types/lodash": "^4.14.116",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"coveralls": "^3.0.2",
"eslint": "^5.15.1",
"eslint-plugin-only-warn": "^1.0.1",
"lerna": "^3.2.1",
"mocha": "^5.2.0",
"tslint-microsoft-contrib": "^5.2.1",
"typescript": "^2.7.2"
BruceHaley marked this conversation as resolved.
Show resolved Hide resolved
},
"nyc": {
"exclude": [
"**/botframework*/**/generated/**",
"**/botframework-luis/**",
"**/tests/**",
"**/tools/**",
"**/internal.*"
]
}
}