-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.59 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
{
"name": "concordialang-codeceptjs-testcafe",
"version": "0.4.2",
"description": "Concordia Language plug-in to generate test scripts for CodeceptJS with TestCafé",
"license": "AGPL-3.0",
"readme": "readme.md",
"homepage": "https://github.com/thiagodp/concordialang-codeceptjs-testcafe",
"author": {
"name": "Thiago Delgado Pinto",
"email": "thiago-dp@bol.com.br"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thiagodp/concordialang-codeceptjs-testcafe.git"
},
"bugs": {
"url": "https://github.com/thiagodp/concordialang-codeceptjs-testcafe/issues"
},
"keywords": [
"concordialang",
"concordia-lang",
"concordia",
"codeceptjs",
"testcafe",
"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 to run. They are in the `core` package.\"",
"all": "npm run build && npm run test",
"preversion": "npm run build && npm run test",
"postversion": "echo \"Consider rebasing. Don't forget to push tags.\" && git log --oneline"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"concordiaPlugin": {
"isFake": false,
"targets": [
"codeceptjs",
"testcafe"
],
"file": "dist/index.js",
"class": "CodeceptJSTestCafe",
"serve": "echo \"TestCafe does not use an external testing server.\""
},
"dependencies": {
"concordialang-codeceptjs-core": "^1.5.2",
"concordialang-plugin": "^1.3.1",
"testcafe": "^1.18.1"
},
"peerDependencies": {
"codeceptjs": "^3",
"codeceptjs-cmdhelper": "^2.4.0",
"codeceptjs-dbhelper": "^1.2.2",
"mocha": "^9.1.1",
"mochawesome": "^6.3.1"
},
"devDependencies": {
"@types/node": "^10.17.60",
"rimraf": "^3.0.2",
"typescript": "^3.9.10"
}
}