-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.61 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
{
"name": "nbs-automation-test-jim",
"version": "0.2.0",
"private": true,
"license": "UNLICENSED",
"scripts": {
"start": "wdio wdio.conf.js",
"start:local": "wdio wdio.conf.local.js",
"test": "nyc mocha --require @babel/register 'src/**/*.test.js'",
"test:ci": "nyc mocha --require @babel/register 'src/**/*.test.js' && nyc report --reporter=text-lcov | coveralls",
"test:watch": "mocha --watch --reporter min --require @babel/register 'src/**/*.test.js'",
"report:generate": "allure generate --clean ./allure-results -o ./allure-reports",
"report:serve": "static -p 8000 ./allure-reports",
"report:open": "open-cli http://127.0.0.1:8000",
"report": "npm run report:generate && (npm run report:open & npm run report:serve)",
"docs": "jsdoc ./src/ --recurse -d docs"
},
"dependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.0",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.0",
"@babel/register": "^7.7.0",
"@wdio/allure-reporter": "^5.16.0",
"@wdio/cli": "^5.16.9",
"@wdio/cucumber-framework": "^5.16.9",
"@wdio/local-runner": "^5.16.9",
"@wdio/selenium-standalone-service": "^5.16.5",
"@wdio/spec-reporter": "^5.16.5",
"allure-commandline": "^2.13.0",
"chai": "^4.2.0",
"open-cli": "^5.0.0"
},
"devDependencies": {
"chromedriver": "^78.0.1",
"coveralls": "^3.0.8",
"eslint": "^6.7.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"jsdoc": "^3.6.3",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"sinon": "^7.5.0",
"wdio-chromedriver-service": "^5.0.2"
}
}