generated from serenity-js/serenity-js-jasmine-protractor-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.17 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
{
"name": "acceptance-tests",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "npm run postinstall:chrome && npm run postinstall:chromedriver",
"postinstall:chrome": "npx @puppeteer/browsers install chrome@129",
"postinstall:chromedriver": "npx @puppeteer/browsers install chromedriver@129",
"clean": "rimraf target",
"test": "failsafe clean test:execute test:report",
"test:execute": "protractor ./protractor.conf.js",
"test:report": "serenity-bdd run",
"start": "mkdirp target/site/serenity && npx http-server -p 8080 target/site/serenity -s -o",
"lint": "eslint --ext ts --config .eslintrc.js .",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/serenity-js/serenity-js-mocha-protractor-template.git"
},
"keywords": [
"serenity-js",
"bdd",
"mocha",
"protractor",
"testing"
],
"author": "Jan Molak <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/serenity-js/serenity-js-mocha-protractor-template/issues"
},
"homepage": "https://serenity-js.org",
"engines": {
"node": "^18.12 || ^20 || ^22"
},
"dependencies": {
"@serenity-js/assertions": "^3.31.0",
"@serenity-js/console-reporter": "^3.31.0",
"@serenity-js/core": "^3.31.0",
"@serenity-js/mocha": "^3.31.0",
"@serenity-js/protractor": "^3.31.0",
"@serenity-js/web": "^3.31.0",
"@serenity-js/rest": "^3.31.0",
"@serenity-js/serenity-bdd": "^3.31.0",
"protractor": "^7.0.0",
"mocha": "^10.8.2"
},
"devDependencies": {
"@puppeteer/browsers": "^2.6.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^52.0.0",
"eslint-plugin-unused-imports": "^3.2.0",
"http-server": "^14.1.1",
"mkdirp": "^3.0.1",
"npm-failsafe": "^1.3.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}