-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 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
{
"name": "codeceptjs-cmdhelper",
"version": "2.4.1",
"description": "Let your CodeceptJS tests run commands in the console/terminal",
"author": "thiagodp",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/thiagodp/codeceptjs-cmdhelper.git"
},
"bugs": {
"url": "https://github.com/thiagodp/codeceptjs-cmdhelper/issues"
},
"homepage": "https://github.com/thiagodp/codeceptjs-cmdhelper",
"keywords": [
"codeceptjs",
"helper",
"run",
"cmd",
"execute",
"command",
"console",
"terminal",
"test",
"testing",
"bdd"
],
"main": "index.js",
"scripts": {
"setup:v2": "cd codeceptjs_check/v2 && npm i && cd ../..",
"setup:v3": "cd codeceptjs_check/v3 && npm i && cd ../..",
"test": "mocha __tests__",
"test:v2": "cd codeceptjs_check/v2 && npx codeceptjs run",
"test:v3": "cd codeceptjs_check/v3 && npx codeceptjs run",
"test:all": "npm run test && npm run test:v2 && npm run test:v3",
"preversion": "npm run test"
},
"dependencies": {
"split-cmd": "^1.0.1"
},
"devDependencies": {
"codeceptjs": "^3.3.6",
"mocha": "^8.4.0"
}
}