-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 942 Bytes
/
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
{
"name": "codeceptjs-cms",
"version": "1.0.0",
"description": "",
"main": "index.js",
"xo": {
"space": false,
"semicolon": false,
"globals": [
"Feature",
"Scenario",
"Before",
"actor",
"pause",
"locate",
"Given",
"When",
"Then"
],
"rules": {
"new-cap": 0,
"arrow-parens": 0,
"indent": [
"error",
4
]
}
},
"scripts": {
"test": "codeceptjs run --steps",
"test:report-junit": "codeceptjs run --reporter mocha-junit-reporter",
"test:report-mochawesome": "codeceptjs run --reporter mochawesome"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"codeceptjs": "^2.3.3",
"mocha-junit-reporter": "^1.22.0",
"mocha-multi": "^1.1.0",
"mochawesome": "^3.1.2"
},
"devDependencies": {
"eslint": "^6.0.1",
"testcafe": "^1.6.0",
"xo": "^0.24.0"
}
}