-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.71 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
{
"name": "wdio-syngrisi-cucumber-service",
"version": "1.1.3",
"description": "WDIO Service for Syngrisi visual tests using Cucumber",
"main": "dist/index.js",
"np": {
"releaseDraft": true
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:viktor-silakov/wdio-syngrisi-cucumber-service.git"
},
"bugs": {
"url": "https://github.com/viktor-silakov/wdio-syngrisi-cucumber-service/issues"
},
"scripts": {
"pub": "run-s install:global clean compile; np",
"build": "run-s clean compile",
"clean": "rimraf ./dist",
"compile": "babel src/ -d dist/ --config-file ./babel.config.js",
"test": "ls",
"install:local": "npm rm @syngrisi/syngrisi-wdio-sdk && npm install -S ../syngrisi-sdk",
"install:global": "npm rm @syngrisi/syngrisi-wdio-sdk && npm install -S @syngrisi/syngrisi-wdio-sdk"
},
"keywords": [
"wdio-plugin",
"wdio-service",
"syngrisi"
],
"author": "Viktar Silakou",
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-function-bind": "7.16.0",
"@babel/plugin-proposal-optional-catch-binding": "7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/register": "^7.16.0",
"babel-plugin-source-map-support": "^2.1.3",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"npm-run-all": "^4.1.5"
},
"dependencies": {
"@syngrisi/syngrisi-wdio-sdk": "^1.3.2",
"@wdio/logger": "^7.7.0",
"faker": "^5.5.3",
"rimraf": "^3.0.2"
},
"publishConfig": {
"access": "public"
}
}