forked from allure-framework/allure-js-commons
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
final cleanup after project import (via allure-framework#6)
- Loading branch information
1 parent
06cf68e
commit 544d451
Showing
36 changed files
with
226 additions
and
467 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,29 @@ | ||
{ | ||
"private": true, | ||
"scripts": { | ||
"bootstrap": "npm run clean && lerna bootstrap", | ||
"build": "lerna run build", | ||
"clean": "run-p clean:*", | ||
"clean:build": "rimraf ./packages/*/build", | ||
"clean:pkglock": "rimraf ./packages/*/package-lock.json", | ||
"clean:node_modules": "rimraf ./packages/*/node_modules", | ||
"release": "lerna publish", | ||
"setup": "run-s bootstrap build", | ||
"test": "lerna run test" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^10.12.1", | ||
"allure-commandline": "^2.7.0", | ||
"lerna": "^3.4.3", | ||
"npm-run-all": "^4.1.3", | ||
"rimraf": "^2.6.2", | ||
"typescript": "^3.1.5" | ||
} | ||
"private": true, | ||
"scripts": { | ||
"build": "npm run clean && lerna run build", | ||
"test": "lerna run test", | ||
"clean": "lerna run clean", | ||
"release": "lerna publish", | ||
"lint": "lerna run lint", | ||
"lint-fix": "lerna run lint-fix", | ||
|
||
"prepublish": "npm run bootstrap", | ||
"bootstrap": "npm run pre-bootstrap && lerna bootstrap --hoist", | ||
"pre-bootstrap": "run-p pre-bootstrap:*", | ||
"pre-bootstrap:pkglock": "rimraf ./packages/*/package-lock.json", | ||
"pre-bootstrap:node_modules": "rimraf ./packages/*/node_modules", | ||
"pack": "lerna exec -- npm pack" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^10.12.18", | ||
"allure-commandline": "^2.9.0", | ||
"lerna": "^3.10.6", | ||
"npm-run-all": "^4.1.5", | ||
"rimraf": "^2.6.3", | ||
"typescript": "^3.2.4", | ||
"eslint": "^5.12.1", | ||
"eslint-plugin-typescript": "^0.14.0", | ||
"@typescript-eslint/parser": "^1.0.0" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
README.md | ||
* | ||
!dist/**/* | ||
dist/features | ||
dist/declarations/features | ||
!package.json | ||
package-lock.json | ||
!package-lock.json | ||
!*.md | ||
!*.txt |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,31 @@ | ||
{ | ||
"name": "allure-cucumberjs", | ||
"version": "2.0.0-beta.1", | ||
"description": "Allure 2 reporter for Cucumber.JS framework", | ||
"description": "Allure Cucumber.JS integration", | ||
"license": "Apache-2.0", | ||
"author": "Ilya Korobitsyn <[email protected]>", | ||
"contributors": [ | ||
"Claudia Hardman <[email protected]>" | ||
], | ||
"repository": "https://github.com/korobochka/cucumberjs-allure2-reporter", | ||
"repository": "https://github.com/allure-framework/allure-js", | ||
"main": "./dist/index.js", | ||
"typings": "./dist/declarations/", | ||
"scripts": { | ||
"clean": "rimraf ./dist ./out", | ||
"lint": "eslint ./src/**/*.ts ./features/step_definitions/**/*.ts ./index.ts", | ||
"lint-fix": "eslint --fix ./src/**/*.ts ./features/step_definitions/**/*.ts ./index.ts", | ||
"compile": "tsc", | ||
"clean": "rimraf ./dist", | ||
"prepare": "npm run clean && npm run build", | ||
"build": "npm run lint && npm run compile", | ||
"prepublishOnly": "npm run clean && npm run build", | ||
|
||
"generate-report": "allure generate ./out/allure-results -o ./out/allure-report --clean", | ||
"runTest": "node $NODE_DEBUG_OPTION ./node_modules/cucumber/bin/cucumber-js --require ./dist/features/step_definitions/ --format ./dist/features/step_definitions/Reporter.js:./dist/dummy.txt", | ||
"runTestNoReporter": "node $NODE_DEBUG_OPTION ./node_modules/cucumber/bin/cucumber-js --require ./dist/features/step_definitions/ --format event-protocol:./out/event-protocol.txt", | ||
"test": "rimraf ./out ; npm run build && npm run runTest ; npm run generate-report", | ||
"lint": "eslint ./src/**/*.ts ./features/step_definitions/**/*.ts ./index.ts" | ||
"runTest": "cucumber-js --require ./dist/features/step_definitions/ --format ./dist/features/step_definitions/Reporter.js:./dist/dummy.txt", | ||
"runTestNoReporter": "cucumber-js --require ./dist/features/step_definitions/ --format event-protocol:./out/event-protocol.txt", | ||
"test": "rimraf ./out ; npm run build && npm run runTest ; npm run generate-report" | ||
}, | ||
"license": "Apache-2.0", | ||
"devDependencies": { | ||
"@types/cucumber": "^4.0.4", | ||
"cucumber": "^4.2.1", | ||
"eslint": "^5.2.0", | ||
"eslint-plugin-typescript": "^0.12.0", | ||
"typescript-eslint-parser": "^17.0.1" | ||
"cucumber": "^4.2.1" | ||
}, | ||
"dependencies": { | ||
"allure-js-commons": "2.0.0-beta.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,16 @@ | ||
{ | ||
"compilerOptions": { | ||
"outDir": "./dist", | ||
"target": "es5", | ||
"lib": ["es6"], | ||
"module": "commonjs", | ||
"moduleResolution": "node", | ||
"declaration": true, | ||
"declarationDir": "./dist/declarations", | ||
"strict": true, | ||
"sourceMap": true | ||
}, | ||
"extends": "../../tsconfig.json", | ||
"include": [ | ||
"./src/**/*", | ||
"./features/step_definitions/**/*", | ||
"./index.ts" | ||
] | ||
], | ||
"compilerOptions": { | ||
"types": [ | ||
"node", | ||
"cucumber" | ||
], | ||
"outDir": "./dist", | ||
"declarationDir": "./dist/declarations" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
.eslintrc.yml | ||
* | ||
!dist/**/* | ||
dist/test | ||
dist/declarations/test | ||
!package.json | ||
package-lock.json | ||
!package-lock.json | ||
!*.md | ||
!*.txt |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,28 @@ | ||
{ | ||
"name": "allure-jasmine", | ||
"version": "2.0.0-beta.1", | ||
"description": "Allure 2 reporter for Jasmine framework", | ||
"description": "Allure Jasmine integration", | ||
"license": "Apache-2.0", | ||
"author": "Ilya Korobitsyn <[email protected]>", | ||
"repository": "https://github.com/korobochka/jasmine-allure2-reporter", | ||
"repository": "https://github.com/allure-framework/allure-js", | ||
"main": "./dist/index.js", | ||
"typings": "./dist/declarations/", | ||
"scripts": { | ||
"clean": "rimraf ./dist ./out", | ||
"lint": "eslint ./src/** ./test/** ./index.ts", | ||
"lint-fix": "eslint --fix ./src/** ./test/** ./index.ts", | ||
"compile": "tsc", | ||
"clean": "rimraf ./dist", | ||
"prepare": "npm run clean && npm run build", | ||
"build": "npm run lint && npm run compile", | ||
"prepublishOnly": "npm run clean && npm run build", | ||
|
||
"generate-report": "allure generate ./out/allure-results -o ./out/allure-report --clean", | ||
"runTest": "jasmine ./dist/test/*.js", | ||
"runTestDebug": "node $NODE_DEBUG_OPTION ./node_modules/jasmine/bin/jasmine ./dist/test/*.js", | ||
"test": "rimraf ./out ; npm run build && npm run runTest ; npm run generate-report", | ||
"lint": "eslint ./src/** ./test/** ./index.ts" | ||
"test": "rimraf ./out ; npm run build && npm run runTest ; npm run generate-report" | ||
}, | ||
"license": "Apache-2.0", | ||
"devDependencies": { | ||
"@types/jasmine": "^2.8.8", | ||
"eslint": "^5.2.0", | ||
"eslint-plugin-typescript": "^0.12.0", | ||
"jasmine": "^3.1.0", | ||
"typescript-eslint-parser": "^17.0.1" | ||
"@types/jasmine": "^3.3.7", | ||
"jasmine": "^3.3.1" | ||
}, | ||
"dependencies": { | ||
"allure-js-commons": "2.0.0-beta.1" | ||
|
Oops, something went wrong.