forked from serenity-js/serenity-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 6.11 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "serenity-js-monorepo",
"version": "3.0.0-monorepo",
"description": "Serenity/JS: Next generation acceptance testing library for modern web applications.",
"private": true,
"author": {
"name": "Jan Molak",
"email": "[email protected]",
"url": "https://janmolak.com"
},
"homepage": "https://serenity-js.org",
"license": "Apache-2.0",
"keywords": [
"protractor",
"mocha",
"cucumber",
"angular",
"tdd",
"bdd",
"test",
"selenium",
"webdriverjs",
"webdriver",
"testing"
],
"scripts": {
"clean": "rimraf target && lerna run clean --parallel",
"lint": "eslint --ext ts --config .eslintrc.yml .",
"lint:fix": "eslint --ext ts --config .eslintrc.yml --fix .",
"compile:all": "lerna run compile --stream",
"compile:libs": "lerna run compile --stream --scope '@serenity-js/*' --scope '@integration/testing-tools' --scope '@integration/cucumber-specs'",
"compile:@serenity-js": "lerna run compile --stream --scope '@serenity-js/*'",
"compile:@integration": "lerna run compile --stream --scope '@integration/*'",
"compile:@examples": "lerna run compile --stream --scope '@examples/*'",
"compile:@documentation": "lerna run compile --stream --scope '@documentation/*'",
"test": "lerna run test --stream --scope @serenity-js/*",
"integration-test:all": "lerna run test --stream --concurrency 1 --scope @integration/*",
"integration-test:cucumber-1": "lerna run test --stream --scope @integration/cucumber-1",
"integration-test:cucumber-2": "lerna run test --stream --scope @integration/cucumber-2",
"integration-test:cucumber-3": "lerna run test --stream --scope @integration/cucumber-3",
"integration-test:cucumber-4": "lerna run test --stream --scope @integration/cucumber-4",
"integration-test:cucumber-5": "lerna run test --stream --scope @integration/cucumber-5",
"integration-test:cucumber-6": "lerna run test --stream --scope @integration/cucumber-6",
"integration-test:cucumber-7": "lerna run test --stream --scope @integration/cucumber-7",
"integration-test:cucumber-8": "lerna run test --stream --scope @integration/cucumber-8",
"integration-test:jasmine": "lerna run test --stream --concurrency 1 --scope @integration/jasmine",
"integration-test:mocha": "lerna run test --stream --concurrency 1 --scope @integration/mocha",
"integration-test:playwright": "lerna run test --stream --concurrency 1 --scope @integration/playwright-*",
"integration-test:protractor": "lerna run test --stream --concurrency 1 --scope @integration/protractor-*",
"integration-test:webdriverio": "lerna run test --stream --concurrency 1 --scope @integration/webdriverio-*",
"integration-test:webdriverio-web": "lerna run test --stream --concurrency 1 --scope @integration/webdriverio-web",
"site": "lerna run site --stream --scope '@documentation/*'",
"report": "npm run coverage:merge && npm run coverage:report",
"coverage:merge": "bin/istanbul-merge.ts",
"coverage:report": "nyc report --reporter=html --reporter=lcovonly --temp-directory=./target/coverage --report-dir=./target/coverage",
"coverage:publish": "cat ./target/coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js",
"commit": "bin/commit.ts",
"lerna": "lerna",
"lerna:bootstrap:all": "lerna bootstrap",
"lerna:bootstrap:libs": "lerna bootstrap --scope '@serenity-js/*' --scope '@integration/testing-tools' --scope '@integration/cucumber-specs' --ignore='@documentation/*' --ignore '@examples/*' --include-dependencies",
"lerna:bootstrap:site": "lerna bootstrap --scope '@serenity-js/*' --scope '@documentation/*' --ignore '@integration/*' --ignore '@examples/*' --include-dependencies",
"lerna:bootstrap:@serenity-js": "lerna bootstrap --scope '@serenity-js/*' --ignore='@documentation/*' --ignore '@examples/*' --ignore '@integration/*' --include-dependencies",
"lerna:bootstrap:@integration": "lerna bootstrap --scope '@serenity-js/*' --scope '@integration/*' --ignore='@documentation/*' --ignore '@examples/*' --include-dependencies",
"lerna:bootstrap:@examples": "lerna bootstrap --scope '@serenity-js/*' --scope '@examples/*' --ignore='@documentation/*' --ignore '@integration/*' --include-dependencies",
"lerna:bootstrap:@documentation": "lerna bootstrap --scope '@serenity-js/*' --scope '@documentation/*' --ignore '@examples/*' --ignore='@integration/*' --include-dependencies",
"lerna:publish": "lerna publish --yes",
"lerna:test:version": "lerna version --no-git-tag-version --no-push",
"lerna:test:publish": "lerna publish --no-git-tag-version --no-push",
"version:print": "bin/print-versions.ts",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/chai": "^4.3.3",
"@types/chai-as-promised": "^7.1.5",
"@types/istanbul-lib-coverage": "^2.0.4",
"@types/node": "^14.18.31",
"@types/sinon": "^10.0.13",
"@types/sinon-chai": "^3.2.8",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chromedriver": "^106.0.1",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "3.3.0",
"cz-customizable": "6.9.2",
"eslint": "^8.24.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unicorn": "^43.0.2",
"eslint-plugin-unused-imports": "^2.0.0",
"fast-glob": "^3.2.11",
"husky": "^8.0.1",
"istanbul-lib-coverage": "^3.2.0",
"lerna": "^5.4.3",
"mocha-testdata": "^1.2.0",
"nyc": "15.1.0",
"rimraf": "^3.0.2",
"semver": "^7.3.8",
"sinon": "^14.0.1",
"sinon-chai": "^3.7.0",
"test-console": "^2.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"repository": {
"type": "git",
"url": "https://github.com/serenity-js/serenity-js.git"
},
"bugs": {
"url": "https://github.com/serenity-js/serenity-js/issues"
},
"engines": {
"node": "^14 || ^16 || ^18",
"npm": "^6 || ^7 || ^8"
}
}