-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
108 lines (108 loc) · 3.56 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
{
"name": "authenticator-browser-extension",
"version": "0.0.0-development",
"description": "Enables your browser-based automated tests to authenticate with your web app.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"funding": {
"url": "https://github.com/sponsors/jan-molak"
},
"scripts": {
"clean": "rimraf build reports",
"lint": "eslint . --ext ts",
"lint:fix": "eslint . --ext ts --fix",
"compile": "tsc --project tsconfig.json",
"test:spec": "nyc --report-dir ./reports/coverage mocha 'spec/**/*.spec.ts'",
"test:e2e": "npm run test:e2e:protractor && npm run test:e2e:wdio && npm run test:e2e:puppeteer && npm run test:e2e:playwright",
"test:e2e:protractor": "protractor e2e/protractor/protractor.conf.js",
"test:e2e:wdio": "wdio e2e/webdriverio/wdio.conf.ts",
"test:e2e:playwright": "mocha e2e/playwright/chrome-authenticator-extension.spec.ts",
"test:e2e:puppeteer": "mocha e2e/puppeteer/chrome-authenticator-extension.spec.ts",
"test": "npm run test:spec",
"verify": "npm run clean && npm run lint && npm run test:spec && npm run compile && npm run test:e2e",
"publish:reports": "nyc report --reporter=text-lcov | coveralls",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/jan-molak/authenticator-browser-extension.git"
},
"keywords": [
"chrome",
"protractor",
"webdriver",
"wdio",
"plugin",
"extension"
],
"author": "Jan Molak <jan.molak@smartcodeltd.co.uk>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jan-molak/authenticator-browser-extension/issues"
},
"homepage": "https://github.com/jan-molak/authenticator-browser-extension#readme",
"devDependencies": {
"@serenity-js/assertions": "^2.31.1",
"@serenity-js/core": "^2.31.1",
"@serenity-js/local-server": "^2.31.1",
"@serenity-js/protractor": "^2.31.1",
"@types/chai": "^4.2.21",
"@types/express": "^4.17.13",
"@types/graceful-fs": "^4.1.5",
"@types/mocha": "^9.0.0",
"@types/mustache": "^4.1.2",
"@types/node": "^14.17.11",
"@types/semver": "^7.3.8",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"@wdio/cli": "^7.10.0",
"@wdio/firefox-profile-service": "^7.8.0",
"@wdio/local-runner": "^7.10.0",
"@wdio/mocha-framework": "^7.10.0",
"@wdio/spec-reporter": "^7.10.0",
"chai": "^4.3.4",
"chromedriver": "^92.0.1",
"commitizen": "^4.2.4",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unicorn": "^28.0.2",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"geckodriver": "^2.0.3",
"memfs": "^3.2.2",
"mocha": "^9.1.0",
"mocha-testdata": "^1.2.0",
"nyc": "^15.1.0",
"playwright": "^1.14.0",
"protractor": "^7.0.0",
"puppeteer": "^10.2.0",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.5",
"semantic-release-cli": "^5.4.3",
"ts-node": "^10.2.1",
"typescript": "^4.3.5",
"wdio-chromedriver-service": "^7.2.0",
"wdio-geckodriver-service": "^2.0.3",
"webdriverio": "^7.10.0"
},
"dependencies": {
"graceful-fs": "^4.2.8",
"mustache": "^4.2.0",
"node-zip": "^1.1.1",
"read-pkg": "^5.2.0",
"semver": "^7.3.5",
"tiny-types": "^1.16.1",
"upath": "^2.0.1"
},
"engines": {
"node": "^12 || ^14 || ^16"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}