-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.26 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
{
"name": "concordialang-codeceptjs-webdriverio",
"version": "2.4.3",
"description": "Concordia Language plug-in to generate test scripts for CodeceptJS with WebDriverIO",
"license": "AGPL-3.0",
"readme": "readme.md",
"homepage": "https://github.com/thiagodp/concordialang-codeceptjs-webdriverio",
"author": {
"name": "Thiago Delgado Pinto",
"email": "thiago-dp@bol.com.br"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thiagodp/concordialang-codeceptjs-webdriverio.git"
},
"bugs": {
"url": "https://github.com/thiagodp/concordialang-codeceptjs-webdriverio/issues"
},
"keywords": [
"concordialang",
"concordia-lang",
"concordia",
"codeceptjs",
"webdriverio",
"selenium",
"test",
"script",
"e2e",
"plugin",
"plug-in"
],
"main": "dist",
"types": "dist",
"files": [
"dist/*"
],
"scripts": {
"switch:un": "npm uninstall concordialang-codeceptjs-core concordialang-plugin",
"switch:local": "npm run switch:un && npm i ../concordialang-plugin && npm i ../concordialang-codeceptjs-core",
"switch:web": "npm run switch:un && npm i concordialang-plugin concordialang-codeceptjs-core",
"build": "rimraf dist && tsc",
"test": "echo \"No tests in this package. They are in the `core` package.\"",
"all": "npm run build && npm run test",
"preversion": "npm run build && npm run test",
"postversion": "echo \"Rebase is recommended. Don't forget to push the tags.\" && git log --oneline",
"postinstall": "npx selenium-standalone install"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"concordiaPlugin": {
"isFake": false,
"targets": [
"codeceptjs",
"webdriverio"
],
"file": "dist/index.js",
"class": "CodeceptJSWebDriverIO",
"serve": "npx selenium-standalone start"
},
"dependencies": {
"concordialang-codeceptjs-core": "^1.5.2",
"concordialang-plugin": "^1.3.2",
"selenium-standalone": "^7.1.0",
"webdriverio": "^7.16.13"
},
"devDependencies": {
"@types/node": "^10.17.60",
"rimraf": "^3.0.2",
"typescript": "^3.9.10"
}
}